Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > SSO Settings

Generate SSO token

Returns

Returns a resource object of type sso_token.

Examples

1
PUT https://site-api.datocms.com/sso-settings/generate-token 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-settings/generate-token' \
2
-X PUT \
3
-H "Authorization: Bearer YOUR-API-TOKEN" \
4
-H "Accept: application/json" \
5
-H "X-Api-Version: 3"
1
await fetch("https://site-api.datocms.com/sso-settings/generate-token", {
2
method: "PUT",
3
headers: {
4
Authorization: "Bearer YOUR-API-TOKEN",
5
Accept: "application/json",
6
"X-Api-Version": "3",
7
},
8
});
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
"id": "312",
10
"type": "sso_token",
11
"attributes": {
12
"scim_api_token": "as3dasjh1234hj1"
13
}
14
}
15
}