Skip to main content
POST
/
api
/
oauth
/
getApplicationByClientId
Get application by client ID
curl --request POST \
  --url https://api2.rhombussystems.com/api/oauth/getApplicationByClientId \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "clientId": "AAAAAAAAAAAAAAAAAAAAAA"
}
'
import requests

url = "https://api2.rhombussystems.com/api/oauth/getApplicationByClientId"

payload = { "clientId": "AAAAAAAAAAAAAAAAAAAAAA" }
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({clientId: 'AAAAAAAAAAAAAAAAAAAAAA'})
};

fetch('https://api2.rhombussystems.com/api/oauth/getApplicationByClientId', 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/oauth/getApplicationByClientId")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"clientId\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();
{
  "application": {
    "clientId": "AAAAAAAAAAAAAAAAAAAAAA",
    "clientSecretHash": "<string>",
    "contactEmail": "<string>",
    "description": "<string>",
    "name": "<string>",
    "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
    "redirectUri": "<string>"
  },
  "error": true,
  "errorMsg": "<string>",
  "warningMsg": "<string>"
}

Authorizations

x-auth-apikey
string
header
required

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

x-auth-scheme
enum<string>
default:api-token
required

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 getting OAuth application by client ID.

clientId
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

Response

200 - application/json

OK

Response object containing OAuth application details.

application
object

OAuth application details

error
boolean | null
errorMsg
string | null
warningMsg
string | null
Last modified on July 8, 2026