Update VertoFX Integration
Description:
The /integrations/vertofx
endpoint updates an existing VertoFX integration configuration.
Method: PUT
Query Parameters:
Parameter | Type | Description |
---|---|---|
id | string | ID of the integration to update |
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": {}
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
ID of the integration to update
Integration updated
The response is of type object
.
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": {}
}