Stytch · Schema

api_b2b_scim_v1_b2b_scim_connection_GetGroupsResponse

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
scim_groups array A list of SCIM Connection Groups belonging to the connection.
status_code integer
next_cursor 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.
View JSON Schema on GitHub

JSON Schema

stytch-api-b2b-scim-v1-b2b-scim-connection-getgroupsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_b2b_scim_v1_b2b_scim_connection_GetGroupsResponse",
  "title": "api_b2b_scim_v1_b2b_scim_connection_GetGroupsResponse",
  "type": "object",
  "properties": {
    "scim_groups": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/api_b2b_scim_v1_SCIMGroup"
      },
      "description": "A list of SCIM Connection Groups belonging to the connection."
    },
    "status_code": {
      "type": "integer",
      "format": "int32"
    },
    "next_cursor": {
      "type": "string",
      "description": "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."
    }
  },
  "required": [
    "scim_groups",
    "status_code"
  ]
}