Get domain auto-join setting
GET
/auth/v1/memberships/{orgId}/domain/auto-joinReturns whether users with a matching verified domain email are automatically added to the organization.
Authorization
Bearer Authorization<token>
In: header
Path Parameters
orgId*string
Organization ID
Response Body
200application/json
OK
type: unknown
{
"$ref": "#/components/schemas/authv1.AutoJoinSetting",
"$ref-value": {
"properties": {
"enabled": {
"type": "boolean"
},
"present": {
"type": "boolean"
}
},
"type": "object"
}
}curl -X GET "https://api.rixl.com/auth/v1/memberships/string/domain/auto-join"OK
application/json
{
"$ref": "#/components/schemas/authv1.AutoJoinSetting",
"$ref-value": {
"properties": {
"enabled": {
"type": "boolean"
},
"present": {
"type": "boolean"
}
},
"type": "object"
}
}