Get

Description

Get the SCIM user group mapping for the tenant.

Request

HTTP Method: GET

Sample request


curl -X GET \
  https://<<META.tenant.domain>>/api/v1/admin/scim_user_group_mapping \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'

Response

A successful request will return an object with the SCIM user group mapping.

Sample response

{
  "mappings": [
    {
      "group_name": "Managers",
      "team_name": "Analytics",
      "role_name": "TEAM_ADMIN"
    },
    {
      "group_name": "Managers",
      "team_name": "Incident Response",
      "role_name": "EDITOR"
    },
    {
      "group_name": "Analysts",
      "team_name": "Analytics",
      "role_name": "EDITOR"
    },
    {
      "group_name": "Everyone",
      "team_name": "Incident Response",
      "role_name": "VIEWER"
    }
  ]
}
Was this helpful?