SCIM

Bulk create users

Creates multiple users within an organization.

post/scim/v2/Users/bulk

Request body

schemasstring[]

A list of schema URNs that describe the structure of the user resource. These URNs indicate the schemas that are applicable to the user data.

userNamestring

The username or login name of the user.

preferredLanguagestring

The preferred language of the user, typically represented by a locale code (e.g., 'en', 'fr').

localestring

The locale of the user, typically represented by a locale code (e.g., 'en-US', 'fr-FR').

Response

OK

schemasstring[]

A list of schema URNs that describe the structure of the response. These URNs indicate the schemas that are applicable to the data.

idstring nullable

A unique identifier for the response object, often used for referencing or tracking.

externalIdstring nullable

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

totalResultsinteger

The total number of user resources available in the response, irrespective of pagination.

startIndexinteger
itemsPerPageinteger

Example response

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

Changes