Skip to main content
POST
/
access-profiles

Endpoint

POST https://gateway.orkeia.ai/access-profiles

Headers

authorization: <your_token>
Content-Type: application/json

Request Body (JSON)

{
  "name": "Manager",
  "description": "Limited access to management"
}

Responses

Response - Success

response
{
  "status": "OK",
  "data": { "id": "string_id"}
}

500 — Bad Request

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

400 — Client Error

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

Example (cURL)

curl -X POST "https://gateway.orkeia.ai/access-profile"   -H "Authorization: Bearer <your_token>"   -H "Content-Type: application/json"   -d '{ "name": "Manager", "description": "Limited access to management" }'