Skip to main content
POST
/
api
/
oauth
/
updateApplication
Update OAuth application
curl --request POST \
  --url https://api2.rhombussystems.com/api/oauth/updateApplication \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "clientId": "AAAAAAAAAAAAAAAAAAAAAA",
  "contactEmail": "[email protected]",
  "description": "Integration app for accessing Rhombus API",
  "name": "My Integration App",
  "redirectUri": "https://myapp.com/oauth/callback"
}
'
{
  "error": true,
  "errorMsg": "<string>",
  "warningMsg": "<string>"
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for OAuth application management.

clientId
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

contactEmail
string | null

Contact email for the OAuth application

description
string | null

Description of the OAuth application

Example:

"Integration app for accessing Rhombus API"

name
string | null

Name of the OAuth application

Example:

"My Integration App"

redirectUri
string | null

OAuth redirect URI

Example:

"https://myapp.com/oauth/callback"

Response

200 - application/json

OK

Base response object denoting success, or failure with a reason, for an endpoint.

error
boolean | null
errorMsg
string | null
warningMsg
string | null