curl --request DELETE \
--url https://api.royalti.io/ddex/tenant-providers/{id} \
--header 'Authorization: Bearer <token>'{}Delete tenant provider configuration
curl --request DELETE \
--url https://api.royalti.io/ddex/tenant-providers/{id} \
--header 'Authorization: Bearer <token>'{}const response = await fetch('https://api.royalti.io/ddex/tenant-providers/example-id', {
method: 'DELETE',
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Force delete even if historical messages exist. Otherwise, soft-disables when history is found.
Deleted or disabled (soft delete)
The response is of type object.