Skip to main content

Process a list of identityIds

POST 

/identities/process

This operation should not be used to schedule your own identity processing or to perform system wide identity refreshes. The system will use a combination of event-based processing and scheduled processing that runs every day at 8:00 AM and 8:00 PM in the tenant's timezone to keep your identities synchronized.

This endpoint will perform the following tasks:

  1. Calculate identity attributes, including applying or running any rules or transforms (e.g. calculate Lifecycle State at a point-in-time it's expected to change).
  2. Evaluate role assignments, leading to assignment of new roles and removal of existing roles.
  3. Enforce provisioning for any assigned accesses that haven't been fulfilled (e.g. failure due to source health).
  4. Recalculate manager relationships.
  5. Potentially clean-up identity processing errors, assuming the error has been resolved.

A token with ORG_ADMIN or HELPDESK authority is required to call this API.

Request

Body

required
    identityIds string[]

    Possible values: >= 1, <= 250

    List of up to 250 identity IDs to process.

Responses

Object containing the DTO type TASK_RESULT and the job id for the task

Schema
    type string

    the type of response reference

    id string

    the task ID

    name string

    the task name (not used in this endpoint, always null)

Loading...