Contains operations on the Account User resource.
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.
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/users/{userId}/foreign-key/update/{key}
- https://demo.api.zephr.com/v3/users/{userId}/foreign-key/update/{key}
- 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/users/3f589a2d-86cd-4b70-a5df-68dca75a3a21/foreign-key/update/foreign_system_key \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json'Email address of the user to search for.
Username of the user to search for.
Foreign key of the user to search for. The foreign system is parsed as the remainder of the parameter key name following 'foreign_id.'
Performs a general search for the specified value across multiple fields, including attributes.
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/users
- https://demo.api.zephr.com/v3/users
- 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/users?identifiers.email_address=example%40example.com&identifiers.username=username&foreign_key.xxx=123abc&search=abc&search_by_attributes=slug%3Dsubscriber-id%26operator%3Dis%26value%3D123456%26from%3D2025-01-01%26to%3D2025-06-01' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'{ "results": [ { … } ] }
Validators are not required for user creation, users created without validators won't be able to sign into Zephr unless they follow a password reset flow, or being mapped as shadow users identified by a JWT.
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/users
- https://demo.api.zephr.com/v3/users
- 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/users \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"user_id": "123456789ABCD",
"identifiers": {
"email_address": "joe.blow@company.com"
},
"attributes": {
"first_name": "Joe",
"surname": "Blow",
"email_verified": true
}
}'{ "data": { "user_id": "123456789ABCD", "identifiers": { … }, "attributes": { … }, "email_verified": true } }
- 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>'