All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
createBulk | POST /scim/v2/Bulk | Return the bulk which was created. |
createBulk(attributes, excludedAttributes, body)
Return the bulk which was created.
Returns HTTP 201 if the bulk is successfully created.
// Import classes:
//import io.swagger.client.ApiException;
//import io.swagger.client.api.Scimv2BulkApi;
Scimv2BulkApi apiInstance = new Scimv2BulkApi();
List<String> attributes = Arrays.asList("attributes_example"); // List<String> | SCIM defined attributes parameter.
List<String> excludedAttributes = Arrays.asList("excludedAttributes_example"); // List<String> | SCIM defined excludedAttribute parameter.
String body = "body_example"; // String |
try {
apiInstance.createBulk(attributes, excludedAttributes, body);
} catch (ApiException e) {
System.err.println("Exception when calling Scimv2BulkApi#createBulk");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
attributes | List<String> | SCIM defined attributes parameter. | [optional] |
excludedAttributes | List<String> | SCIM defined excludedAttribute parameter. | [optional] |
body | String | [optional] |
null (empty response body)
No authorization required
- Content-Type: application/scim+json
- Accept: application/json, application/scim+json