Assign API resource roles to application

POST /api/applications/{applicationId}/roles

Assign API resource roles to the specified application. The API resource roles will be added to the existing API resource roles.

Path parameters

application/json

Body Required

  • roleIds array[string] Required

    An array of API resource role IDs to assign.

    Minimum length of each is 1.

Responses

  • 201 application/json

    The API resource roles have been assigned to the application successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

  • Unprocessable Content

POST /api/applications/{applicationId}/roles
curl \
 -X POST https://[tenant_id].logto.app/api/applications/{applicationId}/roles \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"roleIds":["string"]}'
Request examples
{
  "roleIds": [
    "string"
  ]
}