Skip to content

Suggested

API Dashboard
POST /identities/{id}/permissions

Allows an identity to operate in behalf of an other from the same client id

POST/identities/{id}/permissions
Add Permissions over another identity

Bearer access token returned by the authentication endpoint.

The API key used for authentication when making requests to the API Gateway.

API version selector for Conomy endpoints. Use 24-04-2025 for the current version.

Identifies the application making the request.

Unique identifier for the identity that is receiving permissions

resourcestringrequired

Kind of resource we are giving access to (e.g., IDENTITY)

referencestringrequired

Reference which identificates the resource

permissionsstring[]required

Permissions allowed to perform on behalf of the resource

Request
POST /sandbox/identities/{id}/permissions HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
x-api-key: {YOUR_API_KEY}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Content-Type: application/json

[
  {
    "resource": "IDENTITY",
    "reference": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "permissions": [
      "admin"
    ]
  }
]
Response
{}