Contacts

Create a contact

Adds a contact to the authenticated owner's address book. phoneNumber is normalized to E.164 before storage and the uniqueness check. 409 if this owner already has a contact with the same normalized phoneNumber.

post/numbers/contacts

Request body

namestring required
phoneNumberstring required

Normalized to E.164 (spaces/dashes/dots stripped); rejected with 400 if it doesn't validate as E.164 afterward.

Example request

{
  "name": "Jane Doe",
  "phoneNumber": "+15551230001"
}

Response

Contact created

Changes