Workflows (Apps)
Retrieve information about your apps. Apps are the workflows or agents you've created in AirOps.
Retrieve a list of all apps in your workspace.
API requests are authenticated using Bearer tokens. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
You can find your API key in your workspace settings.
Apps found
Authentication error
GET /public_api/airops_apps HTTP/1.1
Host: api.airops.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": 297,
"name": "my draft",
"description": "draft",
"background_color": "#fea",
"created_at": "2023-06-20T00:49:56.696Z",
"updated_at": "2023-10-24T11:26:21.820Z",
"active_version_id": 44,
"emoji": "",
"public": false,
"uuid": "6d2f4e0b-1a1d-49ae-8034-ba56f932119e",
"readme": ""
}
]Get details of a specific app by its UUID.
API requests are authenticated using Bearer tokens. Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
You can find your API key in your workspace settings.
The unique identifier (UUID) for the app. You can find this in your app's Integrate section.
6d2f4e0b-1a1d-49ae-8034-ba56f932119eApp found
Authentication error
GET /public_api/airops_apps/{app_uuid} HTTP/1.1
Host: api.airops.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": 297,
"name": "my draft",
"description": "draft",
"background_color": "#fea",
"created_at": "2023-06-20T00:49:56.696Z",
"updated_at": "2023-10-24T11:26:21.820Z",
"active_version_id": 44,
"emoji": "",
"public": false,
"uuid": "6d2f4e0b-1a1d-49ae-8034-ba56f932119e",
"readme": ""
}Was this helpful?