CorebanqCorebanq Developer Docs
Rolesv1User Roles

Create user-role assignment

Creates a global user↔role link (not customer-scoped). A duplicate user_id+role_id assignment returns 400 with a localized duplicate-assignment message; malformed JSON or an invalid UUID field returns 400 with a localized validation message.

POST
/v1/user-roles

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

models.CreateUserRoleInput

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/user-roles" \  -H "Content-Type: application/json" \  -d '{    "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",    "role_id": "ac4e70c8-d5be-48af-93eb-760f58fc91a9"  }'
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
  "role_id": "ac4e70c8-d5be-48af-93eb-760f58fc91a9",
  "created_at": "2019-08-24T14:15:22Z",
  "created_by": "ee824cad-d7a6-4f48-87dc-e8461a9201c4",
  "modified_at": "2019-08-24T14:15:22Z",
  "modified_by": "e8d4374d-93a1-4e98-a6c6-fdcf00c5059f",
  "active": true,
  "metadata": {}
}

{
  "status": 400,
  "message": "User role already exists"
}

{
  "status": 401,
  "message": "Unauthorized"
}
{
  "status": 403,
  "message": "Forbidden"
}
{
  "status": 500,
  "message": "server_error"
}