Skip to main content
GET
/
squads
/
availables

Endpoint

GET https://gateway.orkeia.ai/squads/availables Authentication
Requires header authorization: <your_token>.

Example (cURL)

curl -X GET "https://gateway.orkeia.ai/squads/availables" \
  -H "authorization:  <your_token>"

Responses

Response - Success

response
{
  "status": "OK",
  "data": [
    {
      "id": "SQUAD_1234",
      "name": "Alpha Team",
      "description": "Team responsible for integrations",
      "enabled": true,
      "createdAt": "2024-07-15T14:25:18.000Z"
    }
  ]
}

500 — Server Error

{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}

400 — Client Error

{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}

Fields

FieldTypeDescription
idstringID of the squad
namestringName
descriptionstringDescription
enabledbooleanIf it is enabled
createdAtstringCreation date (ISO 8601)