Skip to main content
POST
/
api
/
org
/
updateGeneralSettings
Update general settings
curl --request POST \
  --url https://api2.rhombussystems.com/api/org/updateGeneralSettings \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "accountBillingContactEmail": "[email protected]",
  "accountOwnerEmail": "[email protected]",
  "accountTechnicalContactEmail": "[email protected]",
  "accountTechnicalContacts": [
    "<string>"
  ],
  "defaultPlayerViewLiveType": "REALTIME",
  "inactivityTimeout": 30,
  "name": "Acme Corporation",
  "uapSettings": {
    "enabled": true,
    "text": "<string>"
  }
}
'
{
  "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 updating general organization settings.

accountBillingContactEmail
string | null

Email of the account billing contact

accountOwnerEmail
string | null

Email of the account owner

accountTechnicalContactEmail
string | null

Email of the account technical contact

accountTechnicalContacts
(string | null)[] | null

List of account technical contact emails

List of account technical contact emails

defaultPlayerViewLiveType
enum<string>
Available options:
REALTIME,
BUFFERED
inactivityTimeout
integer<int32> | null

Inactivity timeout in minutes

Example:

30

name
string | null

Name of the organization

Example:

"Acme Corporation"

uapSettings
object

Response

200 - application/json

OK

Response object for updating general organization settings.

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