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