Get an external service
GET
/external-service/{service_id}
const url = 'https://your-candig-domain/federation/v1/external-service/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://your-candig-domain/federation/v1/external-service/exampleGet an external 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”Successful query
Service not found
Internal Error
