Authentication

The Zuora API uses bearer tokens for authentication. See the Get started tutorial to learn how to generate a bearer token.

All API requests should include a bearer token in an Authorization HTTP header as follows:

Copy
Copied
Authorization: Bearer ZUORA-BEARER-TOKEN

Organization (optional)

For users who belong to multiple organizations, you can pass a header to specify which organization, or organizations, to user for an API request.

Example:

 

Copy
Copied
curl https://test.zuora.com/v2/accounts \
  -H "Authorization: Bearer $ZUORA_BEARER_TOKEN" \
  -H "Zuora-Org-Ids: YOUR_ORG_ID"