Delete User
사용자 식별자를 사용해 사용자를 삭제할 수 있습니다. 사용자의 모든 데이터가 삭제됩니다.
1. Request
1.1 URL
DELETE
https://api.asleep.ai/ai/v1/users/{user_id}
1.2 Header
Field | Type | Required | Description |
---|---|---|---|
x-api-key | String | O | API Key |
1.3 Path Parameter
Field | Type | Required | Description |
---|---|---|---|
user_id | String | O | user id |
Example
curl "https://api.asleep.ai/ai/v1/users/{user_id}" -XDELETE \
-H "x-api-key: <YOUR_API_KEY>"
2. Response
2.1 204 No Content
- 사용자 삭제 성공
2.2 401 Unauthorized
x-user-id
헤더 값이 없거나 포맷이 맞지 않음
{
"detail": "invalid user id"
}
2.3 404 Not Found
- 사용자 없음
{
"detail": "user requested was not found"
}
Updated about 1 year ago