Skip to main content
GET
/
scim
/
Groups
/
{id}
Get SCIM Group
curl --request GET \
  --url https://api.attention.tech/v2/scim/Groups/{id} \
  --header 'Authorization: <api-key>'
{
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:Group"
  ],
  "id": "group-uuid-123",
  "displayName": "Sales Team",
  "members": [
    {
      "value": "user-uuid-1",
      "display": "jane@example.com"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.attention.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

SCIM group ID

Response

Group retrieved successfully

id
string
required
Example:

"1001"

schemas
string[]
Example:
[
"urn:ietf:params:scim:schemas:core:2.0:Group",
"urn:okta:custom:group:1.0"
]
displayName
string
Example:

"firstGroup"

members
object[]
Example:
[{ "value": "101", "display": "okta" }]
urn:okta:custom:group:1.0
object