Delete users
Last updated
DELETE /users requests are limited to a raw JSON payload size of 3 MB.
DELETE https://api.signitic.app/users
x-api-key*
String
Your API key
{
"users": [
{
"email": "user1@signitic.fr"
},
{
"email": "user2@signitic.fr"
}
]
}Deleting a user marks it for deletion one month later. The limit applies to the raw request body size, not to a fixed number of users.
200 OK400
103
The request body is not valid JSON.
401
99
The API key is missing or invalid.
422
104
The raw JSON payload exceeds 3 MB.
Last updated
{
"success": true,
"value": {
"deleted": 2
}
}