Delete User
This API can be used by MSPs to delete a user. User deletion is asynchronous. Upon request submission, user record will be in "deleting" status and will be removed completely when deletion process finishes.
Path Variables
Field | Description | Type | Notes |
---|---|---|---|
userId | User metallic id | UUID |
Response Body
Field | Description | Type | Notes |
---|---|---|---|
id | User metallic id | UUID | |
status | User status | String Enumeration - User Status Enumeration | Refer to User Status Enumeration. Value "deleting" is returned in this case. |
insertTs | User created time | Timestamp | |
updateTs | User last updated time | Timestamp |
Path Parameters
- userId string required
Responses
- 200
OK
- application/json
- Schema
- Delete User - Success
Schema
{
"data": {
"id": "537FBFE1-88F4-480F-9063-2F6426536684",
"insertTs": "2022-01-19T19:23:44",
"updateTs": "2022-01-19T19:28:18",
"status": "deleting"
}
}
Loading...