Skip to content

Create SSO Setting

Request

Creates SSO setting.

Security
ApiKeyAuth
Bodyapplication/x-www-form-urlencoded
sso_settingobject(CreateOrUpdateSSOSettingRequest)required
curl -i -X POST \
  https://api.treasuredata.com/v3/account/sso_setting \
  -H 'Authorization: TD1 <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d 'sso_setting={"cert":"-----BEGIN CERTIFICATE----- xxx -----END CERTIFICATE-----","identity_provider_name":"AzureAD","entity_id":"urn:treasuredata:sso","sign_in_endpoint":"https://login.example.com/ffffffff-ffff-ffff-ffff-ffffffffffff/saml","sign_out_endpoint":"https://login.exmple.com/signout","strategy":"samlp"}'

Responses

OK

Bodyapplication/json
sso_settingobject(SSO Setting)required
Response
{ "sso_setting": { "cert": "-----BEGIN CERTIFICATE----- xxx -----END CERTIFICATE-----", "identity_provider_name": "AzureAD", "sign_in_endpoint": "https://login.example.com/ffffffff-ffff-ffff-ffff-ffffffffffff/saml", "sign_out_endpoint": "https://login.exmple.com/signout", "strategy": "samlp", "updated_at": "2020-12-31T11:22:33Z" } }