Contains operations on the Account User resource.
Admin API reference
/- Delete a schema slug
Retrieve a user schema
Retrieve a schema slug
Save a schema slug
Delete a schema slug
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/schema/users
- https://demo.api.zephr.com/v3/schema/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/schema/users \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'Response
application/json
[ { "slug": "slug1", "label": "Test", "internal-description": "This is for testing", "public-description": "Please provide some info", "required": false, "decision-point": false, "validation-expression": "test", "input-type": "text", "select-options": "null", "range-start": 0, "range-end": 100, "range-step": 5 } ]
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/schema/users/{slug}
- https://demo.api.zephr.com/v3/schema/users/{slug}
- 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/schema/users/{slug}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'Response
application/json
{ "slug": "slug1", "visibility": "PUBLIC", "context": "slug1", "label": "Test", "internal-description": "This is for testing", "public-description": "Please provide some info", "required": true, "validation-expression": "test", "input-type": "text", "select-options": "null", "range-start": 0, "range-end": 100, "range-step": 5, "decision-point": true, "publicly-writable": true, "form-use": true, "unit": "unit", "unit-position": "leading", "value-precision": 0, "stat-direction": "ascending" }
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/schema/users/{slug}
- https://demo.api.zephr.com/v3/schema/users/{slug}
- 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/schema/users/{slug}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>'Bodyapplication/json
Enum"text""color""number""range""time""datetime""date""week""month""email"
Example: "text"
- Mock serverhttps://developer.zuora.com/_mock/zephr-api-reference/zephr-admin-api/v3/schema/users/{slug}
- https://demo.api.zephr.com/v3/schema/users/{slug}
- 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/schema/users/{slug}' \
-H 'Authorization: ZEPHR-HMAC-* <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"slug": "slug1",
"visibility": "PUBLIC",
"context": "slug1",
"label": "Test",
"internal-description": "This is for testing",
"public-description": "Please provide some info",
"required": true,
"validation-expression": "test",
"input-type": "text",
"select-options": "null",
"range-start": 0,
"range-end": 100,
"range-step": 5,
"decision-point": true,
"publicly-writable": true,
"form-use": true,
"unit": "unit",
"unit-position": "leading",
"value-precision": 0,
"stat-direction": "ascending"
}'- 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>'