For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete users

Endpoint

DELETE https://api.signitic.app/users

Headers

Name
Type
Description

x-api-key*

String

Your API key

Request body

Example

{
  "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.

Success response

200 OK

Error responses

Status
Internal code
When

400

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