Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > SSO Group

Sync SSO provider groups to DatoCMS roles

Returns

Returns a resource object of type sso_group.

Examples

1
POST https://site-api.datocms.com/sso-groups/:sso_group_id/copy-roles HTTP/1.1
2
Authorization: Bearer YOUR-API-TOKEN
3
Accept: application/json
4
X-Api-Version: 3
Terminal window
1
curl -g 'https://site-api.datocms.com/sso-groups/:sso_group_id/copy-roles' \
2
-X POST \
3
-H "Authorization: Bearer YOUR-API-TOKEN" \
4
-H "Accept: application/json" \
5
-H "X-Api-Version: 3"
1
await fetch(
2
"https://site-api.datocms.com/sso-groups/:sso_group_id/copy-roles",
3
{
4
method: "POST",
5
headers: {
6
Authorization: "Bearer YOUR-API-TOKEN",
7
Accept: "application/json",
8
"X-Api-Version": "3",
9
},
10
},
11
);
1
HTTP/1.1 200 OK
2
Content-Type: application/json
3
Cache-Control: cache-control: max-age=0, private, must-revalidate
4
X-RateLimit-Limit: 30
5
X-RateLimit-Remaining: 28
6
7
{
8
"data": {
9
"type": "sso_group",
10
"id": "312",
11
"attributes": {
12
"name": "Admin",
13
"priority": 1
14
},
15
"relationships": {
16
"role": {
17
"data": {
18
"type": "role",
19
"id": "34"
20
}
21
},
22
"users": {
23
"data": [
24
{
25
"type": "sso_user",
26
"id": "312"
27
}
28
]
29
}
30
}
31
}
32
}