class StytchB2B::SCIM::Connection
def get_groups(
== Method Options:
The type of this field is nilable +String+.
The `next_cursor` string is returned when your search result contains more than one page of results. This value is passed into your next search call in the `cursor` field.
next_cursor::
The type of this field is +Integer+.
(no documentation yet)
status_code::
The type of this field is list of +SCIMGroup+ (+object+).
A list of SCIM Connection Groups belonging to the connection.
scim_groups::
An object with the following fields:
== Returns:
The type of this field is nilable +Integer+.
The number of search results to return per page. The default limit is 100. A maximum of 1000 results can be returned by a single search request. If the total size of your result set is greater than one page size, you must paginate the response. See the `cursor` field.
limit::
The type of this field is nilable +String+.
The `cursor` field allows you to paginate through your results. Each result array is limited to 1000 results. If your query returns more than 1000 results, you will need to paginate the responses using the `cursor`. If you receive a response that includes a non-null `next_cursor` in the `results_metadata` object, repeat the search call with the `next_cursor` value set to the `cursor` field to retrieve the next page of results. Continue to make search calls until the `next_cursor` in the response is null.
cursor::
The type of this field is +String+.
The ID of the SCIM connection.
connection_id::
The type of this field is +String+.
Globally unique UUID that identifies a specific Organization. The `organization_id` is critical to perform operations on an Organization, so be sure to preserve this value.
organization_id::
== Parameters:
Gets a paginated list of all SCIM Groups associated with a given Connection.
def get_groups( organization_id:, connection_id:, cursor: nil, limit: nil, method_options: nil ) headers = {} headers = headers.merge(method_options.to_headers) unless method_options.nil? query_params = { cursor: cursor, limit: limit } request = request_with_query_params("/v1/b2b/scim/#{organization_id}/connection/#{connection_id}", query_params) get_request(request, headers) end