Bulk operations resource.
Examples
iex> client = ExScimClient.Client.new("https://example.com/scim/v2", "token")
iex> operations = %{"Operations" => []}
iex> {:ok, _response} = ExScimClient.Resources.Bulk.execute(client, operations)
Summary
Functions
Executes bulk operations.
Functions
@spec execute(ExScimClient.Client.t(), map()) :: {:ok, map()} | {:error, term()}
Executes bulk operations.
Parameters
client-ExScimClient.Clientstructoperations- Map containing bulk operations
Examples
iex> client = ExScimClient.Client.new("https://example.com/scim/v2", "token")
iex> operations = %{"Operations" => [%{"method" => "POST", "path" => "/Users", "data" => %{"userName" => "newuser"}}]}
iex> {:ok, _response} = ExScimClient.Resources.Bulk.execute(client, operations)