Submit API Token Application
curl --request POST \
--url https://api2.rhombussystems.com/api/integrations/submitApiTokenApplication \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"csr": "-----BEGIN CERTIFICATE REQUEST-----...",
"displayName": "Production API Token"
}
'import requests
url = "https://api2.rhombussystems.com/api/integrations/submitApiTokenApplication"
payload = {
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"csr": "-----BEGIN CERTIFICATE REQUEST-----...",
"displayName": "Production API Token"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
permissionGroupUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
csr: '-----BEGIN CERTIFICATE REQUEST-----...',
displayName: 'Production API Token'
})
};
fetch('https://api2.rhombussystems.com/api/integrations/submitApiTokenApplication', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/integrations/submitApiTokenApplication")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"permissionGroupUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"csr\": \"-----BEGIN CERTIFICATE REQUEST-----...\",\n \"displayName\": \"Production API Token\"\n}")
.asString();{
"apiKey": "AAAAAAAAAAAAAAAAAAAAAA",
"cert": "<string>",
"error": true,
"errorMsg": "<string>",
"validCSR": true,
"warningMsg": "<string>"
}Integrations Webservice
Submit API Token Application
deprecated
Request an api token for organization
POST
/
api
/
integrations
/
submitApiTokenApplication
Submit API Token Application
curl --request POST \
--url https://api2.rhombussystems.com/api/integrations/submitApiTokenApplication \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"csr": "-----BEGIN CERTIFICATE REQUEST-----...",
"displayName": "Production API Token"
}
'import requests
url = "https://api2.rhombussystems.com/api/integrations/submitApiTokenApplication"
payload = {
"permissionGroupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"csr": "-----BEGIN CERTIFICATE REQUEST-----...",
"displayName": "Production API Token"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
permissionGroupUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
csr: '-----BEGIN CERTIFICATE REQUEST-----...',
displayName: 'Production API Token'
})
};
fetch('https://api2.rhombussystems.com/api/integrations/submitApiTokenApplication', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/integrations/submitApiTokenApplication")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"permissionGroupUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"csr\": \"-----BEGIN CERTIFICATE REQUEST-----...\",\n \"displayName\": \"Production API Token\"\n}")
.asString();{
"apiKey": "AAAAAAAAAAAAAAAAAAAAAA",
"cert": "<string>",
"error": true,
"errorMsg": "<string>",
"validCSR": true,
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request object for submitting an API token application.
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Authentication type for the API token
Available options:
API_TOKEN, CERT Certificate Signing Request (CSR) for token authentication
Example:
"-----BEGIN CERTIFICATE REQUEST-----..."
Display name for the API token
Example:
"Production API Token"
Last modified on September 23, 2026