Workflows (Apps)

Retrieve information about your apps. Apps are the workflows or agents you've created in AirOps.

List all apps

get

Retrieve a list of all apps in your workspace.

Authorizations
AuthorizationstringRequired

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.

Responses
200

Apps found

application/json
get
/public_api/airops_apps
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": ""
  }
]

Retrieve an app

get

Get details of a specific app by its UUID.

Authorizations
AuthorizationstringRequired

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.

Path parameters
app_uuidstring · uuidRequired

The unique identifier (UUID) for the app. You can find this in your app's Integrate section.

Example: 6d2f4e0b-1a1d-49ae-8034-ba56f932119e
Responses
200

App found

application/json
get
/public_api/airops_apps/{app_uuid}
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?