Get users

Retrieve the list of users.

Get users

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

Headers

Name
Type
Description

x-api-key*

String

Your API key

Success response

{
  "success": true,
  "users": [
    {
      "email": "[email protected]",
      "enabled": 1
    },
    {
      "email": "[email protected]",
      "enabled": 2
    }
  ]
}

Error responses

Status
Internal code
When

401

99

The API key is missing or invalid.

In the list response, enabled returns the API status value: 1 for active users and 2 for inactive users.

Last updated