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/v4/sessions/{site}
- https://demo.api.zephr.com/v4/sessions/{site}
- 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/sessions/{site}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"identifiers": {
"email_address": "joe.blow@company.com"
},
"validators": {
"password": "mysecurepassword123"
}
}'{ "expiryDate": "2018-11-15 14:29 PM UTC", "startDate": "2017-11-15 14:29 PM UTC", "authenticated": true, "session_id": "SS0123456789ABCD", "user_id": "UU0123456789ABCD" }
Request
This endpoint allows you to access specific session details for a particular site. By providing the unique identifiers for the site and the session, you can retrieve detailed information about that session. This information can include the session's start time, end time, current status, and any associated user data. The exact content of the response will depend on the specific session and site identifiers provided in the request.
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v4/sessions/{site}/{sessionId}
- https://demo.api.zephr.com/v4/sessions/{site}/{sessionId}
- 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/sessions/{site}/{sessionId}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'{ "tenantId": "company", "subTenantId": "company|demo", "authenticated": true, "v": 0, "session_variables": {}, "user_id": "UU0123456789ABCD", "sessions": [ { … } ], "access_model": { "meters": { … }, "credits": { … }, "delivered_entitlements": [ … ], "granted_bundles": [ … ], "jwt_bundles": [], "user_state": "registered" }, "last_updated": 1707230240685, "test_groups": { "property1": "string", "property2": "string" }, "second_party_data": { "property1": "string", "property2": "string" } }
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v4/sessions/{site}/{sessionId}
- https://demo.api.zephr.com/v4/sessions/{site}/{sessionId}
- 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/v4/sessions/{site}/{sessionId}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v4/anonymous-sessions/{site}
- https://demo.api.zephr.com/v4/anonymous-sessions/{site}
- 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/anonymous-sessions/{site}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'{ "expiryDate": "2018-11-15 14:29 PM UTC", "startDate": "2017-11-15 14:29 PM UTC", "authenticated": true, "session_id": "SS0123456789ABCD", "user_id": "UU0123456789ABCD" }
- 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>'