Skip to main content
PUT
/
api
/
organizations
/
api-keys
Update organization API keys and details
curl --request PUT \
  --url https://your-instance.example.com/api/organizations/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "creds": {
    "anthropicApiKey": "<string>",
    "sinchServicePlanId": "<string>",
    "sinchApiToken": "<string>",
    "sinchMmsApiKey": "<string>",
    "sinchMmsServiceId": "<string>"
  },
  "name": "<string>",
  "phoneNumber": "<string>",
  "address": "<string>",
  "logoUrl": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
id
string
required
creds
object
required
name
string
phoneNumber
string
address
string
logoUrl
string

Response

API keys updated

message
string