Get users
Last updated
Retrieve the list of users.
GET https://api.signitic.app/users
x-api-key*
String
Your API key
{
"success": true,
"users": [
{
"email": "user1@signitic.fr",
"enabled": 1
},
{
"email": "user2@signitic.fr",
"enabled": 2
}
]
}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