Assign role to applications

POST /api/roles/{id}/applications

Assign a role to a list of applications. The role must have the type Application.

Path parameters

  • id string Required

    The unique identifier of the role.

application/json

Body Required

  • applicationIds array[string] Required

    An array of application IDs to be assigned.

    Minimum length of each is 1.

Responses

  • 201

    The role was assigned to the applications successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Not Found

  • 422

    Unprocessable Content

POST /api/roles/{id}/applications
curl \
 -X POST https://[tenant_id].logto.app/api/roles/{id}/applications \
 -H "Content-Type: application/json" \
 -d '{"applicationIds":["string"]}'
Request example
{
  "applicationIds": [
    "string"
  ]
}