# Create an address book entry (/api-reference/address-book/v1-address-book-post) Adds a recipient to the account's address book, validating and standardizing the supplied address before saving it. This is the canonical path for the address book. The older `/v1/zapierActions/address-book` path is retained for existing integrations and behaves identically. ## `POST /v1/address-book` ### Request body Content type: `application/json` (required) - `firstName` (string, required) - `lastName` (string, required) - `toOrganization` (string, required) - `address1` (string, required) - `address2` (string, required) - `city` (string, required) - `state` (string, required) - `zip` (string, required) - `phoneNumber` (string | null, required) ### Responses - `200` — successful operation - `400` — Parameters does not contain proper data. Check Errors from the response for more data. - `401` — Authorization key not valid - `403` — Your account does not have this feature enabled. No response body is returned — do not attempt to parse one.