# `bird amb businesses settings update`

## Usage

```bash
bird amb businesses settings update <business-id> [flags]
```

## Description

Update Apple Messages for Business 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.

Build the request from flags, a JSON AMBChannelSettingsUpdate body via --body-file ("-" reads
stdin), or both — a flag overrides the matching body field. Run --example to
print a ready-to-edit body, or --dry-run to print the resolved request without
sending it.

## Examples

```bash
# print the body shape (no credentials needed)
bird amb businesses settings update --example

# the body it prints:
```

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

## Options

#### Request

| Name                | Description                                                  |
| ------------------- | ------------------------------------------------------------ |
| `--body-file`       | Read the JSON request body from this file; "-" reads stdin   |
| `--example`         | Print a complete example request body, then exit             |
| `--dry-run`         | Print the resolved request without sending it, then exit     |
| `--idempotency-key` | Deduplication key; a retry with the same key won't act twice |

#### Options

| Name                | Description                                                                                                                                                                                                                                                                           |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `--default-locale`  | 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`      | The brand name shown on the Bird-hosted landing page customers use to connect this business.                                                                                                                                                                                          |
| `--logo-asset-id`   | The business's logo, as an asset in your media library. Send null to clear it.                                                                                                                                                                                                        |
| `--response-schema` | Print the fields this command returns, then exit                                                                                                                                                                                                                                      |

## Related

| Name                                                                                  | Description                                      |
| ------------------------------------------------------------------------------------- | ------------------------------------------------ |
| [`bird amb businesses settings get`](/docs/cli/reference/amb-businesses-settings-get) | Get Apple Messages for Business channel settings |

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