POST api/Import/SyncRequestorUsers
Bulk create/update users. Max bulk size is 100 users. Optional parameters are cleared to its default when not provided on update.
Request Information
URI Parameters
None.
Body Parameters
List of objects
Collection of RequestorUserImportPostName | Description | Type | Additional information |
---|---|---|---|
UserProviderKey | string |
None. |
|
ExternalId | string |
None. |
|
string |
None. |
||
Operations | Collection of JsonPatchOperation |
None. |
Request Formats
application/json, text/json
Sample:
[ { "UserProviderKey": "sample string 1", "ExternalId": "sample string 2", "Email": "sample string 3", "Operations": [ { "Operation": 0, "FromPath": "sample string 1", "ParsedFromPath": null, "Path": "sample string 2", "ParsedPath": null, "Value": {} }, { "Operation": 0, "FromPath": "sample string 1", "ParsedFromPath": null, "Path": "sample string 2", "ParsedPath": null, "Value": {} } ] }, { "UserProviderKey": "sample string 1", "ExternalId": "sample string 2", "Email": "sample string 3", "Operations": [ { "Operation": 0, "FromPath": "sample string 1", "ParsedFromPath": null, "Path": "sample string 2", "ParsedPath": null, "Value": {} }, { "Operation": 0, "FromPath": "sample string 1", "ParsedFromPath": null, "Path": "sample string 2", "ParsedPath": null, "Value": {} } ] } ]
application/xml, text/xml
Sample:
<ArrayOfRequestorUserImportPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts.Import"> <RequestorUserImportPost> <Operations xmlns:d3p1="http://schemas.datacontract.org/2004/07/JsonPatch" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts"> <d3p1:JsonPatchOperation> <d3p1:FromPath>sample string 1</d3p1:FromPath> <d3p1:Operation>add</d3p1:Operation> <d3p1:ParsedFromPath xmlns:d5p1="http://schemas.datacontract.org/2004/07/JsonPatch.Paths.Components" i:nil="true" /> <d3p1:ParsedPath xmlns:d5p1="http://schemas.datacontract.org/2004/07/JsonPatch.Paths.Components" i:nil="true" /> <d3p1:Path>sample string 2</d3p1:Path> <d3p1:Value /> </d3p1:JsonPatchOperation> <d3p1:JsonPatchOperation> <d3p1:FromPath>sample string 1</d3p1:FromPath> <d3p1:Operation>add</d3p1:Operation> <d3p1:ParsedFromPath xmlns:d5p1="http://schemas.datacontract.org/2004/07/JsonPatch.Paths.Components" i:nil="true" /> <d3p1:ParsedPath xmlns:d5p1="http://schemas.datacontract.org/2004/07/JsonPatch.Paths.Components" i:nil="true" /> <d3p1:Path>sample string 2</d3p1:Path> <d3p1:Value /> </d3p1:JsonPatchOperation> </Operations> <Email>sample string 3</Email> <ExternalId>sample string 2</ExternalId> <UserProviderKey>sample string 1</UserProviderKey> </RequestorUserImportPost> <RequestorUserImportPost> <Operations xmlns:d3p1="http://schemas.datacontract.org/2004/07/JsonPatch" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts"> <d3p1:JsonPatchOperation> <d3p1:FromPath>sample string 1</d3p1:FromPath> <d3p1:Operation>add</d3p1:Operation> <d3p1:ParsedFromPath xmlns:d5p1="http://schemas.datacontract.org/2004/07/JsonPatch.Paths.Components" i:nil="true" /> <d3p1:ParsedPath xmlns:d5p1="http://schemas.datacontract.org/2004/07/JsonPatch.Paths.Components" i:nil="true" /> <d3p1:Path>sample string 2</d3p1:Path> <d3p1:Value /> </d3p1:JsonPatchOperation> <d3p1:JsonPatchOperation> <d3p1:FromPath>sample string 1</d3p1:FromPath> <d3p1:Operation>add</d3p1:Operation> <d3p1:ParsedFromPath xmlns:d5p1="http://schemas.datacontract.org/2004/07/JsonPatch.Paths.Components" i:nil="true" /> <d3p1:ParsedPath xmlns:d5p1="http://schemas.datacontract.org/2004/07/JsonPatch.Paths.Components" i:nil="true" /> <d3p1:Path>sample string 2</d3p1:Path> <d3p1:Value /> </d3p1:JsonPatchOperation> </Operations> <Email>sample string 3</Email> <ExternalId>sample string 2</ExternalId> <UserProviderKey>sample string 1</UserProviderKey> </RequestorUserImportPost> </ArrayOfRequestorUserImportPost>
Response Information
Resource Description
HttpStatusCode 200 OK with list od created/updated results or 400 BadRequest with Message.
SyncRequestorUsersResultName | Description | Type | Additional information |
---|---|---|---|
RequestorUsers |
List of SyncRequestorUserResult |
Collection of SyncRequestorUserResult |
None. |
Response Formats
application/json, text/json
Sample:
{ "RequestorUsers": [ { "Username": "JohnDoe", "Success": true, "ErrorMessage": null, "UserProviderKey": "3e5ca50e-ab45-4fad-8f3a-94786f5eb6ab", "UserProviderKeyConflict": null, "CustomerId": 121, "ExternalId": null } ] }
application/xml, text/xml
Sample:
<SyncRequestorUsersResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results"> <RequestorUsers> <SyncRequestorUserResult> <CustomerId>121</CustomerId> <ErrorMessage i:nil="true" /> <ExternalId i:nil="true" /> <Success>true</Success> <UserProviderKey>3e5ca50e-ab45-4fad-8f3a-94786f5eb6ab</UserProviderKey> <UserProviderKeyConflict i:nil="true" /> <Username>JohnDoe</Username> </SyncRequestorUserResult> </RequestorUsers> </SyncRequestorUsersResult>