Unregister a service
DELETE
/external-service/{service_id}
const url = 'https://your-candig-domain/federation/v1/external-service/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://your-candig-domain/federation/v1/external-service/exampleUnregister a service
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”service_id
required
string
ID of a local service that can be queried by federation
Responses
Section titled “Responses”Service unregistered successfully
Authorization Error
Service not found
Internal Error
