Get the account's SCIM connection. Never carries the bearer token, only its last four characters.
GET
/account/scim/connection
const url = 'https://api.siteqwality.com/account/scim/connection';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.siteqwality.com/account/scim/connection \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”The account’s SCIM connection
Media type application/json
SCIM connection as returned to the dashboard. Never carries the bearer token; only the last four characters.
object
connection_id
required
string
display_name
required
string
status
required
string
base_url
SCIM base URL the customer pastes into their IdP.
string | null
bearer_token_last_four
string | null
last_rotated_at
string | null format: date-time
created_at
required
string format: date-time
Example generated
{ "connection_id": "example", "display_name": "example", "status": "example", "base_url": "example", "bearer_token_last_four": "example", "last_rotated_at": "2026-04-15T12:00:00Z", "created_at": "2026-04-15T12:00:00Z"}Missing or invalid authentication
Caller is not a super admin, or the plan does not include SCIM
No SCIM connection configured
Internal server error