A JSON object that describes a series of operations that would otherwise have been sent via single requests. The Bulk API will execute these in sequence and stop after the first operation fails.
OK, formatted as per the specification
OK, but no content to return.
Bad Request. Please check the response contents for an explanation of the cause. Causes include exceeding the team license, duplicate or empty user names or names that exceed 100 characters.
Unauthorized. Please check whether your API key or application key has sufficient permissions. In case you are unsure, please refer the documentation on application keys and permissions.
Forbidden
An internal error happened. Please forward the associated error ID along with any helpful information to our support
{- "failOnErrors": 1,
- "schemas": [
- "urn:ietf:params:scim:api:messages:2.0:BulkRequest"
], - "Operations": [
- {
- "method": "POST",
- "path": "/Users",
- "bulkId": "bulk1",
- "data": {
- "schemas": [
- "urn:ietf:params:scim:schemas:core:2.0:User"
], - "userName": "user1+bulk@celonis.com",
- "displayName": "Bulk User #1",
- "externalId": "{{externalUserId1}}",
- "role": "MEMBER",
- "sendEmailOnInvitation": "true"
}
}, - {
- "method": "POST",
- "path": "/Users",
- "bulkId": "bulk2",
- "data": {
- "schemas": [
- "urn:ietf:params:scim:schemas:core:2.0:User"
], - "userName": "user2+bulk@celonis.com",
- "displayName": "Bulk User #2",
- "externalId": "{{externalUserId2}}",
- "role": "MEMBER",
- "sendEmailOnInvitation": "true"
}
}, - {
- "method": "POST",
- "path": "/Groups",
- "bulkId": "bulk3",
- "data": {
- "schemas": [
- "urn:ietf:params:scim:schemas:core:2.0:Group"
], - "externalId": "{{externalGroupId1}}",
- "displayName": "SCIM Bulk Group #1 {{externalGroupId1}}",
- "members": [ ]
}
}, - {
- "method": "POST",
- "path": "/Groups",
- "bulkId": "bulk4",
- "data": {
- "schemas": [
- "urn:ietf:params:scim:schemas:core:2.0:Group"
], - "externalId": "{{externalGroupId2}}",
- "displayName": "SCIM Bulk Group #2 {{externalGroupId2}}",
- "members": [ ]
}
}
]
}
"string"