Account custom claims enable help center admins to expand the payload of the help center JWT.

Admins can create up to five account custom claims.

JSON Format

Account custom claims are represented as JSON objects with the following properties

NameTypeRead-onlyMandatoryDescription
idstringtruefalseThe unique identifier (ID) for the account custom claim
account_idintegertruefalseThe id of the account to which this custom claim belongs
brand_idintegertruefalseThe id of the brand to which this custom claim belongs
claim_identifierstringfalsetrueThe key. For example, the string identifying the custom claim in the token payload
claim_valuestringfalsetrueThe custom claim value in the token payload
claim_descriptionstringfalsefalseA string that provides an explanation or rationale regarding the custom claim
created_atstringtruefalseThe time the custom claim was created
updated_atstringtruefalseThe time the custom claim was last updated

List Account Custom Claims

  • GET /api/v2/help_center/integration/account_custom_claims

Returns a set of account custom claims for the Zendesk account and brand.

Allowed for

  • Admins

Code Samples

curl
curl https://{subdomain}.zendesk.com/api/v2/help_center/integration/account_custom_claims.json \  -v -u {email_address}:{password}
Go
import (	"fmt"	"io"	"net/http")
func main() {	url := "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims"	method := "GET"	req, err := http.NewRequest(method, url, nil)
	if err != nil {		fmt.Println(err)		return	}	req.Header.Add("Content-Type", "application/json")	req.Header.Add("Authorization", "Basic <auth-value>") // Base64 encoded "username:password"
	client := &http.Client {}	res, err := client.Do(req)	if err != nil {		fmt.Println(err)		return	}	defer res.Body.Close()
	body, err := io.ReadAll(res.Body)	if err != nil {		fmt.Println(err)		return	}	fmt.Println(string(body))}
Java
import com.squareup.okhttp.*;OkHttpClient client = new OkHttpClient();HttpUrl.Builder urlBuilder = HttpUrl.parse("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims")		.newBuilder();
Request request = new Request.Builder()		.url(urlBuilder.build())		.method("GET", null)		.addHeader("Content-Type", "application/json")		.addHeader("Authorization", Credentials.basic("your-email", "your-password"))		.build();Response response = client.newCall(request).execute();
Nodejs
var axios = require('axios');
var config = {  method: 'GET',  url: 'https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims',  headers: {	'Content-Type': 'application/json',	'Authorization': 'Basic <auth-value>', // Base64 encoded "username:password"  },};
axios(config).then(function (response) {  console.log(JSON.stringify(response.data));}).catch(function (error) {  console.log(error);});
Python
import requests
url = "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims"headers = {	"Content-Type": "application/json",}
response = requests.request(	"GET",	url,	auth=('<username>', '<password>'),	headers=headers)
print(response.text)
Ruby
require "net/http"uri = URI("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims")request = Net::HTTP::Get.new(uri, "Content-Type": "application/json")request.basic_auth "username", "password"response = Net::HTTP.start uri.hostname, uri.port, use_ssl: true do |http|	http.request(request)end

Example response(s)

200 OK
// Status 200 OK
{  "custom_claims": [    {      "account_id": 998,      "brand_id": 10001,      "claim_description": "An example of account custom claim",      "claim_identifier": "custom-claim-1",      "claim_value": "some-claim-value",      "created_at": "2012-04-04T09:14:57Z",      "id": "01HEQFZ40TR7GMPHJZBWAZKE77",      "updated_at": "2012-04-04T09:14:57Z"    },    {      "account_id": 998,      "brand_id": 10001,      "claim_description": "An example of another account custom claim",      "claim_identifier": "custom-claim-2",      "claim_value": "another-claim-value",      "created_at": "2012-04-04T09:14:57Z",      "id": "01HEQFZBW42A0MZ31VAM88DWB1",      "updated_at": "2012-04-04T09:14:57Z"    }  ]}

Show Account Custom Claim

  • GET /api/v2/help_center/integration/account_custom_claims/{account_custom_claim_id}

Shows the properties of the specified account custom claim.

Allowed for

  • Admins

Parameters

NameTypeInRequiredDescription
account_custom_claim_idstringPathtrueThe unique id of the account custom claim

Code Samples

curl
curl https://{subdomain}.zendesk.com/api/v2/help_center/integration/account_custom_claims/{account_custom_claim_id}.json \  -v -u {email_address}:{password}
Go
import (	"fmt"	"io"	"net/http")
func main() {	url := "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77"	method := "GET"	req, err := http.NewRequest(method, url, nil)
	if err != nil {		fmt.Println(err)		return	}	req.Header.Add("Content-Type", "application/json")	req.Header.Add("Authorization", "Basic <auth-value>") // Base64 encoded "username:password"
	client := &http.Client {}	res, err := client.Do(req)	if err != nil {		fmt.Println(err)		return	}	defer res.Body.Close()
	body, err := io.ReadAll(res.Body)	if err != nil {		fmt.Println(err)		return	}	fmt.Println(string(body))}
Java
import com.squareup.okhttp.*;OkHttpClient client = new OkHttpClient();HttpUrl.Builder urlBuilder = HttpUrl.parse("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77")		.newBuilder();
Request request = new Request.Builder()		.url(urlBuilder.build())		.method("GET", null)		.addHeader("Content-Type", "application/json")		.addHeader("Authorization", Credentials.basic("your-email", "your-password"))		.build();Response response = client.newCall(request).execute();
Nodejs
var axios = require('axios');
var config = {  method: 'GET',  url: 'https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77',  headers: {	'Content-Type': 'application/json',	'Authorization': 'Basic <auth-value>', // Base64 encoded "username:password"  },};
axios(config).then(function (response) {  console.log(JSON.stringify(response.data));}).catch(function (error) {  console.log(error);});
Python
import requests
url = "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77"headers = {	"Content-Type": "application/json",}
response = requests.request(	"GET",	url,	auth=('<username>', '<password>'),	headers=headers)
print(response.text)
Ruby
require "net/http"uri = URI("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77")request = Net::HTTP::Get.new(uri, "Content-Type": "application/json")request.basic_auth "username", "password"response = Net::HTTP.start uri.hostname, uri.port, use_ssl: true do |http|	http.request(request)end

Example response(s)

200 OK
// Status 200 OK
{  "custom_claim": {    "account_id": 998,    "brand_id": 10001,    "claim_description": "An example of account custom claim",    "claim_identifier": "custom-claim-1",    "claim_value": "some-claim-value",    "created_at": "2012-04-04T09:14:57Z",    "id": "01HEQFZ40TR7GMPHJZBWAZKE77",    "updated_at": "2012-04-04T09:14:57Z"  }}

Create Account Custom Claim

  • POST /api/v2/help_center/integration/account_custom_claims

Creates an account custom claims scoped by account and brand. Each pair account/brand can create up to five acccount custom claims.

Allowed for

  • Admins

Code Samples

curl
curl https://{subdomain}.zendesk.com/api/v2/help_center/integration/account_custom_claims.json \  -d '{ \    "custom_claim": { \      "claim_identifier": "my-new-custom-claim", \      "claim_value": "my-super-value", \      "claim_description": "my claim description:" \    } \  }' \  -v -u {email_address}:{password} -X POST -H "Content-Type: application/json"
Go
import (	"fmt"	"io"	"net/http")
func main() {	url := "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims"	method := "POST"	req, err := http.NewRequest(method, url, nil)
	if err != nil {		fmt.Println(err)		return	}	req.Header.Add("Content-Type", "application/json")	req.Header.Add("Authorization", "Basic <auth-value>") // Base64 encoded "username:password"
	client := &http.Client {}	res, err := client.Do(req)	if err != nil {		fmt.Println(err)		return	}	defer res.Body.Close()
	body, err := io.ReadAll(res.Body)	if err != nil {		fmt.Println(err)		return	}	fmt.Println(string(body))}
Java
import com.squareup.okhttp.*;OkHttpClient client = new OkHttpClient();HttpUrl.Builder urlBuilder = HttpUrl.parse("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims")		.newBuilder();RequestBody body = RequestBody.create(MediaType.parse("application/json"),		"""""");
Request request = new Request.Builder()		.url(urlBuilder.build())		.method("POST", body)		.addHeader("Content-Type", "application/json")		.addHeader("Authorization", Credentials.basic("your-email", "your-password"))		.build();Response response = client.newCall(request).execute();
Nodejs
var axios = require('axios');
var config = {  method: 'POST',  url: 'https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims',  headers: {	'Content-Type': 'application/json',	'Authorization': 'Basic <auth-value>', // Base64 encoded "username:password"  },};
axios(config).then(function (response) {  console.log(JSON.stringify(response.data));}).catch(function (error) {  console.log(error);});
Python
import requests
url = "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims"headers = {	"Content-Type": "application/json",}
response = requests.request(	"POST",	url,	auth=('<username>', '<password>'),	headers=headers)
print(response.text)
Ruby
require "net/http"uri = URI("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims")request = Net::HTTP::Post.new(uri, "Content-Type": "application/json")request.basic_auth "username", "password"response = Net::HTTP.start uri.hostname, uri.port, use_ssl: true do |http|	http.request(request)end

Example response(s)

201 Created
// Status 201 Created
{  "custom_claim": {    "account_id": 998,    "brand_id": 10001,    "claim_description": "An example of account custom claim",    "claim_identifier": "custom-claim-1",    "claim_value": "some-claim-value",    "created_at": "2012-04-04T09:14:57Z",    "id": "01HEQFZ40TR7GMPHJZBWAZKE77",    "updated_at": "2012-04-04T09:14:57Z"  }}
400 Bad Request
// Status 400 Bad Request
{  "errors": {    "claim_value": [      "can't be blank"    ]  }}

Update Account Custom Claim

  • PUT /api/v2/help_center/integration/account_custom_claims/{account_custom_claim_id}

Allowed for

  • Admins

Parameters

NameTypeInRequiredDescription
account_custom_claim_idstringPathtrueThe unique id of the account custom claim

Code Samples

curl
curl https://{subdomain}.zendesk.com/api/v2/help_center/integration/account_custom_claims/{account_custom_claim_id}.json \  -d '{ \    "custom_claim": { \      "claim_identifier": "updated-custom-claim", \      "claim_value": "updated-super-value", \      "claim_description": "updated description:" \    } \  }' \  -v -u {email_address}:{password} -X PUT -H "Content-Type: application/json"
Go
import (	"fmt"	"io"	"net/http")
func main() {	url := "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77"	method := "PUT"	req, err := http.NewRequest(method, url, nil)
	if err != nil {		fmt.Println(err)		return	}	req.Header.Add("Content-Type", "application/json")	req.Header.Add("Authorization", "Basic <auth-value>") // Base64 encoded "username:password"
	client := &http.Client {}	res, err := client.Do(req)	if err != nil {		fmt.Println(err)		return	}	defer res.Body.Close()
	body, err := io.ReadAll(res.Body)	if err != nil {		fmt.Println(err)		return	}	fmt.Println(string(body))}
Java
import com.squareup.okhttp.*;OkHttpClient client = new OkHttpClient();HttpUrl.Builder urlBuilder = HttpUrl.parse("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77")		.newBuilder();RequestBody body = RequestBody.create(MediaType.parse("application/json"),		"""""");
Request request = new Request.Builder()		.url(urlBuilder.build())		.method("PUT", body)		.addHeader("Content-Type", "application/json")		.addHeader("Authorization", Credentials.basic("your-email", "your-password"))		.build();Response response = client.newCall(request).execute();
Nodejs
var axios = require('axios');
var config = {  method: 'PUT',  url: 'https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77',  headers: {	'Content-Type': 'application/json',	'Authorization': 'Basic <auth-value>', // Base64 encoded "username:password"  },};
axios(config).then(function (response) {  console.log(JSON.stringify(response.data));}).catch(function (error) {  console.log(error);});
Python
import requests
url = "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77"headers = {	"Content-Type": "application/json",}
response = requests.request(	"PUT",	url,	auth=('<username>', '<password>'),	headers=headers)
print(response.text)
Ruby
require "net/http"uri = URI("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77")request = Net::HTTP::Put.new(uri, "Content-Type": "application/json")request.basic_auth "username", "password"response = Net::HTTP.start uri.hostname, uri.port, use_ssl: true do |http|	http.request(request)end

Example response(s)

200 OK
// Status 200 OK
{  "custom_claim": {    "account_id": 998,    "brand_id": 10001,    "claim_description": "An example of account custom claim",    "claim_identifier": "custom-claim-1",    "claim_value": "some-claim-value",    "created_at": "2012-04-04T09:14:57Z",    "id": "01HEQFZ40TR7GMPHJZBWAZKE77",    "updated_at": "2012-04-04T09:14:57Z"  }}
400 Bad Request
// Status 400 Bad Request
{  "errors": {    "claim_value": [      "can't be blank"    ]  }}

Delete Account Custom Claim

  • DELETE /api/v2/help_center/integration/account_custom_claims/{account_custom_claim_id}

Allowed for

  • Admins

Parameters

NameTypeInRequiredDescription
account_custom_claim_idstringPathtrueThe unique id of the account custom claim

Code Samples

curl
curl https://{subdomain}.zendesk.com/api/v2/help_center/integration/account_custom_claims/{account_custom_claim_id}.json \  -v -u {email_address}:{password} -X DELETE
Go
import (	"fmt"	"io"	"net/http")
func main() {	url := "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77"	method := "DELETE"	req, err := http.NewRequest(method, url, nil)
	if err != nil {		fmt.Println(err)		return	}	req.Header.Add("Content-Type", "application/json")	req.Header.Add("Authorization", "Basic <auth-value>") // Base64 encoded "username:password"
	client := &http.Client {}	res, err := client.Do(req)	if err != nil {		fmt.Println(err)		return	}	defer res.Body.Close()
	body, err := io.ReadAll(res.Body)	if err != nil {		fmt.Println(err)		return	}	fmt.Println(string(body))}
Java
import com.squareup.okhttp.*;OkHttpClient client = new OkHttpClient();HttpUrl.Builder urlBuilder = HttpUrl.parse("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77")		.newBuilder();
Request request = new Request.Builder()		.url(urlBuilder.build())		.method("DELETE", null)		.addHeader("Content-Type", "application/json")		.addHeader("Authorization", Credentials.basic("your-email", "your-password"))		.build();Response response = client.newCall(request).execute();
Nodejs
var axios = require('axios');
var config = {  method: 'DELETE',  url: 'https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77',  headers: {	'Content-Type': 'application/json',	'Authorization': 'Basic <auth-value>', // Base64 encoded "username:password"  },};
axios(config).then(function (response) {  console.log(JSON.stringify(response.data));}).catch(function (error) {  console.log(error);});
Python
import requests
url = "https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77"headers = {	"Content-Type": "application/json",}
response = requests.request(	"DELETE",	url,	auth=('<username>', '<password>'),	headers=headers)
print(response.text)
Ruby
require "net/http"uri = URI("https://support.zendesk.com/api/v2/help_center/integration/account_custom_claims/01HEQFZ40TR7GMPHJZBWAZKE77")request = Net::HTTP::Delete.new(uri, "Content-Type": "application/json")request.basic_auth "username", "password"response = Net::HTTP.start uri.hostname, uri.port, use_ssl: true do |http|	http.request(request)end

Example response(s)

204 No Content
// Status 204 No Content
null