English
Documentation
How to use the Orkeia AI platform
Updates a specific access profile.
PUT https://gateway.orkeia.ai/access-profiles/{id}
authorization: <your_token> Content-Type: application/json
{ "id": "profile id", }
{ "name": "Updated Profile", "description": "New description" }
{ "status": "OK", "data": { "id": "string_id"} }
{ "status": "ERROR", "code": "server/error", "data": null }
{ "status": "ERROR", "code": "client/error", "data": null }
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" }'
Was this page helpful?