Skip to main content
GET
/
squads
/
:id

Endpoint

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

Path Parameters

NameTypeRequiredDescriptionExample
idstringYesUnique identifier of the squadSQUAD_1234

Example (cURL)

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

Responses

Response - Success

response
{
  "status": "OK",
  "data": {
    "id": "SQUAD_1234",
    "name": "Equipe Alpha",
    "description": "Time responsável por integrações",
    "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
enabledbooleanWhether it is enabled
createdAtstringCreation date (ISO 8601)