Skip to main content
PUT
/
integrations
/
vertofx
Update VertoFx Integration
curl --request PUT \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "enabled": true,
  "apiKey": "<string>",
  "clientId": "<string>",
  "metadata": {},
  "memo": "<string>"
}'
{
  "success": true,
  "message": "<string>",
  "data": {}
}
Update VertoFX Integration Description:
The /integrations/vertofx endpoint updates an existing VertoFX integration configuration.
Method: PUT Query Parameters:
ParameterTypeDescription
idstringID of the integration to update

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Query Parameters

ParameterTypeInRequiredDescription
idstringqueryāœ…ID of the integration to update

Request Body

Request Schema

FieldTypeRequiredDescription
enabledbooleanāŒEnable or disable the integration
apiKeystringāŒAPI key for the VertoFX integration
clientIdstringāŒClient ID for the VertoFX integration
metadataobjectāŒOptional metadata
memostringāŒOptional memo

Responses

āœ… 200 - Integration updated

āš ļø 400 - Bad Request

āš ļø 401 - Unauthorized

āŒ 500 - Internal Server Error

Tags

VertoFx

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Query Parameters

id
string
required

ID of the integration to update

Body

application/json
enabled
boolean

Enable or disable the integration

apiKey
string

API key for the VertoFX integration

clientId
string

Client ID for the VertoFX integration

metadata
object

Optional metadata

memo
string

Optional memo

Response

Integration updated

success
boolean
Example:

true

message
string
data
object
⌘I