# Get a WhatsApp suppression

`GET /v1/whatsapp/suppressions/{suppression_id}`

Returns the suppression record for the given ID, including one that has already ended. An ended record keeps its dates and reports when and how it ended.

## Code samples

**TypeScript**

```ts
// Resolves a record that has already ended, which the list leaves out.
const suppression = await bird.whatsapp.suppressions.get("was_01krdgeqcxet5s7t44vh8rt9mg");
console.log(suppression.reason, suppression.ended_at ?? "still in force");
```

Examples: [TypeScript](/docs/api/reference/get-whatsapp-suppression.ts.md) · [Python](/docs/api/reference/get-whatsapp-suppression.py.md) · [Go](/docs/api/reference/get-whatsapp-suppression.go.md) · [PHP](/docs/api/reference/get-whatsapp-suppression.php.md) · [CLI](/docs/api/reference/get-whatsapp-suppression.cli.md) · [MCP](/docs/api/reference/get-whatsapp-suppression.mcp.md) · [cURL](/docs/api/reference/get-whatsapp-suppression.curl.md)

## Example response `200`

```json
{
  "id": "was_01krdgeqcxet5s7t44vh8rt9mg",
  "address": "+5511977670804",
  "waba": null,
  "reason": "manual",
  "origin": "api_key",
  "applies_to": "all",
  "source_whatsapp_id": "wam_01krdgeqcxet5s7t44vh8rt9mg",
  "ended_reason": "api_key"
}
```

## Path parameters

- `suppression_id` (string)

## Response body

- `id` (string, required): Unique identifier for the suppression record.
- `address` (string, required): The suppressed WhatsApp address. For a phone number this is canonical E.164 with a leading plus sign, such as `+5511977670804`.
- `waba` (nullable string): The WhatsApp Business Account the suppression is limited to, identified by its WhatsApp-issued account ID, or null when it covers the whole workspace.
- `reason` (string, required)

  Why the address is suppressed. `manual` means it was added directly rather than created automatically from a delivery outcome. This list grows over time, so treat an unknown value as informational rather than rejecting the record.

  Possible values (may grow over time): `manual`
- `origin` (string, required)

  How the suppression came to exist: `api_key` (added through the API with an API key) or `user` (added by a user in the dashboard). This list grows over time, so treat an unknown value as informational rather than rejecting the record.

  Possible values (may grow over time): `api_key`, `user`
- `applies_to` (string, required)

  Blocking policy. `all` blocks every message category. Treat an unrecognized value as blocking.

  Possible values (may grow over time): `all`
- `source_whatsapp_id` (string): ID of the WhatsApp message that caused this address to be suppressed, when the suppression was created automatically. Omitted for addresses added manually.
- `ended_at` (nullable string): When this stopped applying. Null while it is still stopping messages, which is the case for every record in the list.
- `ended_reason` (nullable string)

  What ended it: `api_key` (deleted through the API with an API key) or `user` (deleted by a user in the dashboard). Null while it is still stopping messages. This list grows over time, so treat an unknown value as informational rather than rejecting the record.

  Possible values (may grow over time): `api_key`, `user`
- `created_at` (string, required): When the suppression was created.

## Related resources

- [Should I use a Bird SDK or call the API directly?](/explained/platform/should-i-use-an-sdk-or-call-the-api-directly) (answer)
- [Build your first integration](/learn/paths/integration) (course)
- [Send your first email](/docs/get-started/send-your-first-email) (docs)

[Get an implementation brief](/learn/workspace?topic=api-basics)
