Appearance
Release Auth Ownership
Release the authentication ownership link between a user record and the current tenant. This allows another tenant to claim ownership of the user's authentication. Requires ADMIN permissions and the PEOPLE_MANAGEMENT feature flag.
Parameters
| name * are required parameters | data type | description |
|---|---|---|
userId* | string | The unique identifier of the user |
Return Value
json
{
"statusCode": 201,
"data": true,
"message": "Auth ownership released successfully"
}Error Codes
400 Bad Request: Returned when the ownership cannot be released.401 Unauthorized: Returned when permissions are insufficient.
Examples
bash
curl -X POST "https://app.wombat.software/api/{targetPath}/user/:userId/release-auth-ownership" \
-H "Content-Type: application/json" \
-H "Authentication: Bearer ..."ENDPOINTS
post
/api/{targetPath}/user/:userId/release-auth-ownership