SCIM

Bulk create groups

Creates multiple Groups within an organization.

Must include the displayName attribute. Users can be added to the group during creation by supplying the user ID values in the members array attribute.

post/scim/v2/Groups/bulk

Request body

schemasstring[] required

List of schema URNs defining the structure of the group resource.

displayNamestring required

Name of the group.

Response

OK

schemasstring[]

List of schema URNs defining the structure of the response.

totalResultsinteger

Total number of user groups returned in the response.

idstring nullable
externalIdstring nullable
metastring nullable
startIndexinteger
itemsPerPageinteger

Example response

{
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:ListResponse"
  ],
  "totalResults": 2,
  "resources": [
    {
      "schemas": [
        "urn:ietf:params:scim:schemas:core:2.0:Group",
        "urn:zuora:scim:schemas:1.0:GroupExtension"
      ],
      "id": "5aa8a1fe-4ed4-44db-a6ae-78645a20ae21",
      "displayName": "test_group_1",
      "urn:zuora:scim:schemas:1.0:GroupExtension": {
        "schemas": [
          "urn:zuora:scim:schemas:1.0:GroupExtension"
        ],
        "organizationId": "ec141dc2-901e-4813-a25d-ef480cff1e26",
        "active": true
      },
      "meta": {
        "resourceType": "Group",
        "location": "http://localhost:9900/scim/v2/Groups/bulk/5aa8a1fe-4ed4-44db-a6ae-78645a20ae21"
      }
    }
  ]
}

Changes