Global Logout Interface
When a user logs out of a third-party application system, in addition to terminating the application's own session, the SSO ticket generated by the IDaaS platform will also be destroyed. After IDaaS destroys the SSO ticket, the browser will be redirected to the callback URL specified by the application.
# Request Description
GET https://{your_domain}/api/v1/logout
# Request Example
https://{your_domain}/api/v1/logout?redirect_url=https://{app_domain}/callback&client_id={client_id}
# Request Parameters
| Parameter Name | Chinese Name | Required | Example Value | Description |
|---|---|---|---|---|
| redirect_url | Application address to redirect to after logout | No | https://{app_domain}/callback | After the unified authentication SSO session is terminated, the browser will be redirected to this application address |
| client_id | Application Identifier | No | RqB2HJtkzlUN676qA | The clientId value generated by the IDaaS platform for the application system |
# Response Example
HTTP Status: 302 REDIRECT
http(s)://{app_domain}/callback
1
2
2
