Contains operations on the Account User resource.
Admin API reference
//
Retrieve a company
Admin API Reference (2026-01-08)
The Zephr Admin API provides RESTful access to all Zephr functionality. It is designed for server-side integrations. All requests must be signed as described in HMAC Request Signing and Key Pairs.
The Admin API uses a base URL with the following format: https://{tenantId}.api.zephr.com
Note: If you have multiple tenants, the current tenant ID is shown in a blue box in the top right of the Admin Console. If you have a single site, you can find the tenant ID by navigating to your site domains. To do this, select Sites from the Delivery menu, select your site, and then click the Site Domains button. The tenant ID is the first part of the domain. For example, if the domain is news-paper.cdn.zephr.com, the tenant ID is news.
Download OpenAPI description
Languages
Servers
Mock server
https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api
https://{tenantId}.api.zephr.com
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies
- https://demo.api.zephr.com/v3/companies
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'Response
application/json
{ "results": [ { … } ] }
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies
- https://demo.api.zephr.com/v3/companies
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "Company name",
"description": "Company description",
"website": "company.com",
"contact": "Company contact",
"account_manager": "Company account manager"
}'- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies/{id}
- https://demo.api.zephr.com/v3/companies/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies/{id}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'Response
application/json
{ "name": "Company name", "description": "Company description", "website": "company.com", "contact": "Company contact", "account_manager": "Company account manager" }
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies/{id}
- https://demo.api.zephr.com/v3/companies/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies/{id}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies/{id}
- https://demo.api.zephr.com/v3/companies/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/companies/{id}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "Company name",
"description": "Company description",
"website": "company.com",
"contact": "Company contact",
"account_manager": "Company account manager"
}'- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v4/companies
- https://demo.api.zephr.com/v4/companies
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v4/companies \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "Company name",
"description": "Company description",
"website": "https://company.com",
"contact": "company@email.com",
"account_manager": "Joe Blow"
}'Security
ZephrHmacHttp
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v4/companies/{companyId}
- https://demo.api.zephr.com/v4/companies/{companyId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v4/companies/1f6841a8-7f3b-4505-856e-4549be433545 \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'Response
application/json
{ "company_id": "1f6841a8-7f3b-4505-856e-4549be433545", "name": "My Company", "description": "This is an example company", "website": "https://company.com", "contact": "email@company.com", "account_manager": "Joe Blow", "tenantId": "my-tenant", "subTenantId": "my-tenant" }
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/zephr/public/template-components/v1/template-components/{templateConfigId}
- https://demo.api.zephr.com/zephr/public/template-components/v1/template-components/{templateConfigId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/zephr/public/template-components/v1/template-components/{templateConfigId}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'