# Update Apple Messages for Business channel settings

`PATCH /v1/amb/businesses/{business_id}/channel-settings`

Changes the channel settings for your workspace's Apple Messages for
Business record. Fields you omit are left as they are, except
`entry_points`: sending it replaces the entire set, since there is no
way to add or remove a single entry point without resending the rest.

## Code samples

**TypeScript**

```ts
const result = await bird.amb.businesses.settings.update(
  "abz_01krdgeqcxet5s7t44vh8rt9mg",
  { brand_name: "Acme Support", logo_asset_id: null },
);
console.log(result);
```

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

## Example response `200`

```json
{
  "entry_points": [
    {
      "id": "website-footer",
      "group": "support",
      "intent": "general-inquiry",
      "body": "Hi, I have a question about my order."
    }
  ],
  "default_locale": "en-US",
  "brand_name": "Acme Retail",
  "logo_asset_id": "ast_01krdgeqcxet5s7t44vh8rt9mg"
}
```

## Path parameters

- `business_id` (string): ID of the Apple Messages for Business record, as returned by the business list.

## Request body

- `entry_points` (array of object): The entry points customers can use to open a conversation with this business. Sending this replaces the entire set; there is no way to add or remove a single entry point without resending the rest.
- `entry_points.id` (string, required): Identifier for this entry point, chosen by you and unique within the business's entry points. A conversation opened through this entry point carries it as `entry_point`.
- `entry_points.group` (string, required): The group value Apple reports on a conversation opened through this entry point. Matched against the `group` the first inbound message carries.
- `entry_points.intent` (string, required): The intent value Apple reports on a conversation opened through this entry point. Matched against the `intent` the first inbound message carries, together with `group`.
- `entry_points.body` (string, required): The message text pre-filled for the customer when they open a conversation through this entry point.
- `default_locale` (nullable string): The locale used for this business when a conversation reports none of its own, in BCP-47 form. Omit this field to keep the current default, or send null to clear it. Bird converts a configured default to Apple's locale form when sending a message without a conversation locale.
- `brand_name` (string): The brand name shown on the Bird-hosted landing page customers use to connect this business.
- `logo_asset_id` (nullable string): The business's logo, as an asset in your media library. Send null to clear it.

## Response body

- `entry_points` (array of object, required): The entry points customers can use to open a conversation with this business, each matched against the group and intent an inbound message reports.
- `entry_points.id` (string, required): Identifier for this entry point, chosen by you and unique within the business's entry points. A conversation opened through this entry point carries it as `entry_point`.
- `entry_points.group` (string, required): The group value Apple reports on a conversation opened through this entry point. Matched against the `group` the first inbound message carries.
- `entry_points.intent` (string, required): The intent value Apple reports on a conversation opened through this entry point. Matched against the `intent` the first inbound message carries, together with `group`.
- `entry_points.body` (string, required): The message text pre-filled for the customer when they open a conversation through this entry point.
- `default_locale` (nullable string): The locale used for this business when a conversation reports none of its own, in canonical BCP-47 form. Null until you set one or after you clear it. Bird converts a configured default to Apple's locale form when sending a message without a conversation locale.
- `brand_name` (string, required): The brand name shown on the Bird-hosted landing page customers use to connect this business.
- `logo_asset_id` (nullable string, required): The business's logo, as an asset in your media library. Null until one is set, either from Apple's own redirect or from a later change here.

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