Skip to main content
PUT
/
access-profiles
/
{id}

Endpoint

PUT https://gateway.orkeia.ai/access-profiles/{id}

Headers

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

Path Parameters

{
  "id": "profile id",
}
NameTypeRequiredDescription
idstringYesID of the access profile

Request Body (JSON)

{
  "name": "Updated Profile",
  "description": "New description"
}

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 PUT "https://gateway.orkeia.ai/access-profile/1"   -H "authorization:  <your_token>"   -H "Content-Type: application/json"   -d '{ "name": "Updated Profile", "description": "New description" }'