Create a contact

Creates a new contact object.

SecuritybearerAuth
Request
query Parameters
fields[]
Array of strings

Allows you to specify which fields are returned in the response.

Accepted values custom_fields, created_by_id, updated_by_id, created_time, id, updated_time, account_id, address, home_phone, first_name, last_name, email, work_email, nickname, other_phone, work_phone, mobile_phone, tax_region, other_phone_type, fax

Example: fields[]=id,created_time
contact.fields[]
Array of strings
Deprecated

Allows you to specify which fields are returned in the response.

Accepted values custom_fields, created_by_id, updated_by_id, created_time, id, updated_time, account_id, address, home_phone, first_name, last_name, email, work_email, nickname, other_phone, work_phone, mobile_phone, tax_region, other_phone_type, fax

Example: contact.fields[]=id,created_time
expand[]
Array of strings

Allows you to expand responses by including related object information in a single call. See the Expand responses section of the Quickstart API Tutorials for detailed instructions.

filter[]
Array of strings

A case-sensitive filter on the list. See the Filter lists section of the Quickstart API Tutorial for detailed instructions.
Note that the filters on this operation are only applicable to the related objects. For example, when you are calling the "Retrieve a billing document" operation, you can use the filter[] parameter on the related objects such as filter[]=items[account_id].EQ:8ad09e208858b5cf0188595208151c63

page_size
integer [ 1 .. 99 ]

The maximum number of results to return in a single page. If the specified page_size is less than 1 or greater than 99, Zuora will return a 400 error.

header Parameters
zuora-track-id
string

A custom identifier for tracking API requests. If you set a value for this header, Zuora returns the same value in the response header. This header enables you to track your API calls to assist with troubleshooting in the event of an issue. The value of this field must use the US-ASCII character set and must not include any of the following characters: colon (:), semicolon (;), double quote ("), or quote (').

async
boolean
Default: false

Making asynchronous requests allows you to scale your applications more efficiently by leveraging Zuora's infrastructure to enqueue and execute requests for you without blocking. These requests also use built-in retry semantics, which makes them much less likely to fail for non-deterministic reasons, even in extreme high-throughput scenarios. Meanwhile, when you send a request to one of these endpoints, you can expect to receive a response in less than 150 milliseconds and these calls are unlikely to trigger rate limit errors. If set to true, Zuora returns a 202 Accepted response, and the response body contains only a request ID.

zuora-entity-ids
string

An entity ID. If you have Multi-entity enabled and the authorization token is valid for more than one entity, you must use this header to specify which entity to perform the operation on. If the authorization token is only valid for a single entity or you do not have Multi-entity enabled, you do not need to set this header.

idempotency-key
string

Specify a unique idempotency key if you want to perform an idempotent POST or PATCH request. Do not use this header in other request types. This idempotency key should be a unique value, and the Zuora server identifies subsequent retries of the same request using this value. For more information, see Idempotent Requests.

accept-encoding
string

Include a accept-encoding: gzip header to compress responses, which can reduce the bandwidth required for a response. If specified, Zuora automatically compresses responses that contain over 1000 bytes. For more information about this header, see Request and Response Compression.

content-encoding
string

Include a content-encoding: gzip header to compress a request. Upload a gzipped file for the payload if you specify this header. For more information, see Request and Response Compression.

Request Body schema: application/json
required
object (CustomFields)

Set of user-defined fields associated with this object. Useful for storing additional information about the object in a structured format.

object (Address)

Container for the address informtion.

first_name
required
string

Customer first name.

home_phone
string

Customer home phone (including extension).

last_name
required
string

Customer last name.

mobile_phone
string

Customer phone (including extension).

nickname
string

Nickname for this contact.

other_phone
string

Other customer phone (including extension).

email
string

Customer email address.

tax_region
string

A region defined in your Zuora Tax rules.

work_email
string

Customer work email.

work_phone
string

Customer work phone.

other_phone_type
string

The type of the additional phone number.

Enum: "work" "mobile" "home" "other"
fax
string

The contact's fax number.

account_id
string

Identifier of a customer account with which this contact is associated. Either account_id or account_number is required.

account_number
string

Human-readable identifier of the account with which this contact is associated. Either account_number or account_id is required.

Responses
201

Default Response

400

Bad Request

401

Unauthorized

404

Not Found

405

Method Not Allowed

429

Too Many Requests

500

Internal Server Error

502

Bad Gateway

503

Service Unavailable

504

Gateway Timeout

post/contacts
Request samples
application/json
{
  • "account_id": "8ad085518262bc17018265525eab3696",
  • "first_name": "Amy",
  • "last_name": "Lawrence",
  • "address": {
    },
  • "work_phone": "(888) 976-9056",
  • "work_email": "amy.lawrence@gmail.com"
}
Response samples
application/json
{
  • "id": "8ad08ccf8437067601843a7af4e64rq3",
  • "updated_by_id": "2c92c0946a6dffc0016a7faab604299b",
  • "updated_time": "2022-08-03T13:23:21-07:00",
  • "created_by_id": "2c92c0946a6dffc0016a7faab604299b",
  • "created_time": "2022-08-03T13:23:21-07:00",
  • "custom_fields": {
    },
  • "account_id": "8ad085518262bc17018265525eab3696",
  • "address": {
    },
  • "first_name": "Amy",
  • "last_name": "Lawrence",
  • "work_email": "amy.lawrence@gmail.com",
  • "work_phone": "(888) 976-9056"
}