Show SAML Settings
curl --request GET \
--url https://app.yampi.ai/api/v1/accounts/{account_id}/saml_settings \
--header 'api_access_token: <api-key>'const options = {method: 'GET', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v1/accounts/{account_id}/saml_settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v1/accounts/{account_id}/saml_settings"
headers = {"api_access_token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": 123,
"account_id": 123,
"enabled": true,
"entry_point": "<string>",
"certificate_fingerprint": "<string>",
"issuer": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}{}SAML Settings
Show SAML Settings
Get SAML configuration for the account
GET
/
api
/
v1
/
accounts
/
{account_id}
/
saml_settings
Show SAML Settings
curl --request GET \
--url https://app.yampi.ai/api/v1/accounts/{account_id}/saml_settings \
--header 'api_access_token: <api-key>'const options = {method: 'GET', headers: {api_access_token: '<api-key>'}};
fetch('https://app.yampi.ai/api/v1/accounts/{account_id}/saml_settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.yampi.ai/api/v1/accounts/{account_id}/saml_settings"
headers = {"api_access_token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": 123,
"account_id": 123,
"enabled": true,
"entry_point": "<string>",
"certificate_fingerprint": "<string>",
"issuer": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}{}