# List Apple Messages for Business submissions

`GET /v1/amb/businesses/{business_id}/submissions`

Returns review attempts with frozen evidence for this business, newest first, with fresh private evidence URLs.

## Code samples

**TypeScript**

```ts
const result = await bird.amb.businesses.submissions.list(
  "abz_01krdgeqcxet5s7t44vh8rt9mg",
  { limit: 2 },
);
console.log(result);
```

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

## Example response `200`

```json
{
  "data": [
    {
      "id": "abs_01krdgeqcxet5s7t44vh8rt9mg",
      "business_id": "abz_01krdgeqcxet5s7t44vh8rt9mg",
      "readiness_attachment": {
        "created_at": "2026-05-20T09:14:52Z",
        "updated_at": "2026-05-25T16:42:01Z",
        "id": "tca_01krdgeqcxet5s7t44vh8rt9mg",
        "status": "draft"
      },
      "use_cases_attachment": {
        "created_at": "2026-05-20T09:14:52Z",
        "updated_at": "2026-05-25T16:42:01Z",
        "id": "tca_01krdgeqcxet5s7t44vh8rt9mg",
        "status": "draft"
      },
      "video_attachment": {
        "created_at": "2026-05-20T09:14:52Z",
        "updated_at": "2026-05-25T16:42:01Z",
        "id": "tca_01krdgeqcxet5s7t44vh8rt9mg",
        "status": "draft"
      },
      "status": "approved",
      "next": [
        {
          "kind": "operation"
        }
      ]
    }
  ],
  "next_cursor": "eyJ2IjoxLCJzIjoiXCIyMDI2LTA1LTI1VDE0OjAzOjEwWlwiIiwiaSI6IjAxOTJmM2IxLTRjN2UtN2EyYi05ZDYxLThmM2E1YzJlN2I0MCJ9",
  "prev_cursor": null,
  "refresh_cursor": "eyJ2IjoxLCJzIjoiXCIyMDI2LTA1LTI1VDE2OjQyOjAxWlwiIiwiaSI6IjAxOTJmM2IxLTllMDQtN2NkMy1iODE3LTJhNmY0ZDFjOGUwOSJ9"
}
```

## Path parameters

- `business_id` (string)

## Query parameters

- `sort` (string)

  Field to sort by. Possible values: `created_at`. Defaults to `created_at`.

  Possible values: `created_at`
- `order` (string)

  Sort direction. Defaults to `desc`, which sorts from newest to oldest or largest to smallest, depending on the selected sort field.

  Possible values: `asc`, `desc`
- `limit` (integer): Maximum number of items to return per page.
- `starting_after` (string): Cursor from the `next_cursor` field of a previous list response. Returns items immediately after the cursor position in the current sort order.
- `ending_before` (string): Cursor from the `prev_cursor` or `refresh_cursor` field of a previous list response. Returns items immediately before the cursor position in the current sort order. `prev_cursor` returns the preceding page. `refresh_cursor` anchors at the first row of that response, which on a newest-first sort is how to fetch the items that have appeared since.
- `include_total` (boolean): When true, the response includes a `total` field with the total number of items matching the request's filters across all pages.

## Response body

- `data` (array of object, required)
- `data.id` (string, required)
- `data.business_id` (string, required)
- `data.apple_business_id` (string, required): The Apple business UUID frozen when this attempt was submitted.
- `data.display_name` (string, required): The business display name frozen when this attempt was submitted.
- `data.readiness_attachment` (object, required)
- `data.readiness_attachment.created_at` (string, required)
- `data.readiness_attachment.updated_at` (string, required)
- `data.readiness_attachment.id` (string, required)
- `data.readiness_attachment.filename` (string, required): The uploaded file's name.
- `data.readiness_attachment.content_type` (string, required): The file's content type, determined from its contents.
- `data.readiness_attachment.size_bytes` (integer, required): The file's size in bytes.
- `data.readiness_attachment.description` (string): A short note describing what the file shows.
- `data.readiness_attachment.status` (string, required)

  Lifecycle of an attachment. `draft` is a file that has been uploaded but nothing
  has been registered or submitted with it yet, and it is discarded at its
  `expires_at`. `attached` means at least one registration has cited it, so it is
  kept permanently and can no longer be deleted.

  Possible values: `draft`, `attached`
- `data.readiness_attachment.download_url` (string, required): Short-lived signed URL for downloading or previewing the attachment. Valid for 24 hours from when the resource was fetched; request a fresh resource to obtain a new URL after expiry. Do not cache beyond `download_url_expires_at`. Registration authorities (10DLC and toll-free carriers) retrieve evidence via a separate, longer-lived token; this URL is not that token.
- `data.readiness_attachment.preview_url` (string): Optional signed URL for inline viewing on an isolated storage origin. Valid for one hour; fetch the attachment again to refresh it.
- `data.readiness_attachment.download_url_expires_at` (string, required): When `download_url` expires. Both fields are always present; the server returns an error rather than omitting them.
- `data.readiness_attachment.expires_at` (nullable string, required): When this attachment is discarded if nothing is registered or submitted with it. Null once its status is `attached`.
- `data.use_cases_attachment` (object, required)
- `data.use_cases_attachment.created_at` (string, required)
- `data.use_cases_attachment.updated_at` (string, required)
- `data.use_cases_attachment.id` (string, required)
- `data.use_cases_attachment.filename` (string, required): The uploaded file's name.
- `data.use_cases_attachment.content_type` (string, required): The file's content type, determined from its contents.
- `data.use_cases_attachment.size_bytes` (integer, required): The file's size in bytes.
- `data.use_cases_attachment.description` (string): A short note describing what the file shows.
- `data.use_cases_attachment.status` (string, required)

  Lifecycle of an attachment. `draft` is a file that has been uploaded but nothing
  has been registered or submitted with it yet, and it is discarded at its
  `expires_at`. `attached` means at least one registration has cited it, so it is
  kept permanently and can no longer be deleted.

  Possible values: `draft`, `attached`
- `data.use_cases_attachment.download_url` (string, required): Short-lived signed URL for downloading or previewing the attachment. Valid for 24 hours from when the resource was fetched; request a fresh resource to obtain a new URL after expiry. Do not cache beyond `download_url_expires_at`. Registration authorities (10DLC and toll-free carriers) retrieve evidence via a separate, longer-lived token; this URL is not that token.
- `data.use_cases_attachment.preview_url` (string): Optional signed URL for inline viewing on an isolated storage origin. Valid for one hour; fetch the attachment again to refresh it.
- `data.use_cases_attachment.download_url_expires_at` (string, required): When `download_url` expires. Both fields are always present; the server returns an error rather than omitting them.
- `data.use_cases_attachment.expires_at` (nullable string, required): When this attachment is discarded if nothing is registered or submitted with it. Null once its status is `attached`.
- `data.video_attachment` (object, required)
- `data.video_attachment.created_at` (string, required)
- `data.video_attachment.updated_at` (string, required)
- `data.video_attachment.id` (string, required)
- `data.video_attachment.filename` (string, required): The uploaded file's name.
- `data.video_attachment.content_type` (string, required): The file's content type, determined from its contents.
- `data.video_attachment.size_bytes` (integer, required): The file's size in bytes.
- `data.video_attachment.description` (string): A short note describing what the file shows.
- `data.video_attachment.status` (string, required)

  Lifecycle of an attachment. `draft` is a file that has been uploaded but nothing
  has been registered or submitted with it yet, and it is discarded at its
  `expires_at`. `attached` means at least one registration has cited it, so it is
  kept permanently and can no longer be deleted.

  Possible values: `draft`, `attached`
- `data.video_attachment.download_url` (string, required): Short-lived signed URL for downloading or previewing the attachment. Valid for 24 hours from when the resource was fetched; request a fresh resource to obtain a new URL after expiry. Do not cache beyond `download_url_expires_at`. Registration authorities (10DLC and toll-free carriers) retrieve evidence via a separate, longer-lived token; this URL is not that token.
- `data.video_attachment.preview_url` (string): Optional signed URL for inline viewing on an isolated storage origin. Valid for one hour; fetch the attachment again to refresh it.
- `data.video_attachment.download_url_expires_at` (string, required): When `download_url` expires. Both fields are always present; the server returns an error rather than omitting them.
- `data.video_attachment.expires_at` (nullable string, required): When this attachment is discarded if nothing is registered or submitted with it. Null once its status is `attached`.
- `data.status` (string, required): The review outcome of this attempt. Earlier attempts retain their outcome when a new attempt is submitted.
- `data.status_reason` (nullable string, required)
- `data.created_at` (string, required)
- `data.next` (array of object): Present when a submission is created. Read the parent business for its current onboarding status and next actions. Historical submission lists omit this field.
- `data.next.kind` (string, required)

  What you do about this step.

  - `operation`: call the operation named in `operation`, then
    read again.
  - `external`: act somewhere this API does not reach, then read
    again.
  - `wait`: nothing is asked of you, so read again later.
  - `terminal`: nothing you do resolves this, so stop retrying.

  Tolerate a value you do not recognize: show the `description` and
  offer no action.

  Possible values (may grow over time): `operation`, `external`, `wait`, `terminal`
- `data.next.description` (string, required): A short, human-readable label for the step, suitable for display.
- `data.next.operation` (string): The operationId to call. Present only when `kind` is `operation`. The operation's own schema says how to call it; this says only which one, and what to address it with.
- `data.next.params` (object): The parameters that address the operation, by name: `{"sender_id": "…"}` for an operation on `/v1/sms/senders/{sender_id}/requirements`. A parameter the operation takes in its query string is given the same way, so an operation addressed as `?subject_id=` carries `{"subject_id": "…"}`. Every parameter the call needs is here, whether its value came from the thing you were acting on or is fixed for this step, so you can make the call from this object alone. Present only when `kind` is `operation` and the operation names a subject. A request body, when the operation takes one, is described by the operation's own schema and never appears here.
- `data.next.url` (string): A URL to open. Present only when `kind` is `external`, and only when the step has one. An external step whose `description` says to go and do something with no URL to open is normal.
- `next_cursor` (nullable string, required): Cursor for the next page. Pass back as `starting_after` to advance forward. `null` when no next page exists.
- `prev_cursor` (nullable string, required): Cursor for the previous page. Pass back as `ending_before` to step backward. `null` when no previous page exists.
- `refresh_cursor` (nullable string, required): Refresh anchor, the first row of this response. Pass back as `ending_before` to fetch what precedes it in the current sort order. On a newest-first sort those are the items that have appeared since; on any other sort they are the items that sort earlier, so refreshing such a list means re-fetching it instead. Non-`null` whenever `data` is non-empty; `null` only on an empty page. Distinct from `prev_cursor`.
- `total` (nullable integer): Total number of items matching the request's filters across all pages. Present only when `include_total=true` was passed; otherwise `null`.

## 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)
