SCIM

Bulk update users

Updates an existing multiple user resource, overwriting values for specified attributes.

patch/scim/v2/Users/bulk

Request body

schemasstring[]

A list of schema URNs that apply to this resource, indicating the structure and attributes of the resource.

idstring

A unique identifier for the resource within the system.

externalIdstring

An external identifier for the resource, often used for integration with external systems.

userNamestring

The username of the user. This is typically a unique identifier for the user within the system.

displayNamestring

A name that is suitable for display to end-users, which may be different from the username or full name.

preferredLanguagestring

The preferred language of the user for communication and content.

localestring

The locale of the user, typically used to determine regional settings (e.g., 'en-US' for English, United States).

activeboolean

Indicates whether the user account is currently active. A value of true means the account is active, and false means it is inactive.

Response

OK

itemsPerPageinteger

The items that are allowed on each page.

startIndexinteger
schemasstring[]

A list of schema URNs that apply to this resource, indicating the structure and attributes of the response.

idstring nullable

A unique identifier for the response resource, typically the ID of the user or group.

externalIdstring nullable

An external identifier for the resource, often used for integration with external systems.

totalResultsinteger

The total number of results returned by the request. This helps in pagination and determining the total size of the dataset.

Example response

{
  "resources": [
    {
      "urn:zuora:scim:schemas:1.0:UserExtension": {
        "organizationId": "ec141dc2-901e-4813-a25d-ef480cff1e26",
        "status": "NEW"
      }
    }
  ]
}

Changes