API Explorer
External Services Endpoint
This endpoint allows you to list the active external services on your account.
Listing External Services
A GET returns the external services for your organization, most recent first.
- uuid - the UUID of the service, filterable as
uuid
. - name - the name of the service.
- type - the type of the service, e.g. 'omie'.
- created_on - when this service was created.
Example:
GET /api/v2/external_services.json
Response:
{
"next": null,
"previous": null,
"results": [
{
"uuid": "9a8b001e-a913-486c-80f4-1356e23f582e",
"name": "Bob's Omie Project",
"type": "omie",
"created_on": "2023-02-27T09:06:15.456"
},
...