curl --request DELETE \
--url https://api.royalti.io/integrations/vertofx \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"data": {}
}Delete VertoFX Integration
curl --request DELETE \
--url https://api.royalti.io/integrations/vertofx \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "<string>",
"data": {}
}/integrations/vertofx endpoint deletes an existing VertoFX integration configuration.
Method: DELETE
Query Parameters:
| Parameter | Type | Description |
|---|---|---|
| id | string | ID of the integration to delete |
const response = await fetch('https://api.royalti.io/integrations/vertofx', {
method: 'DELETE',
headers: {
'Authorization': `Bearer ${token}`,
},
});
const data = await response.json();
console.log(data);