Body parameters
Response
Array of clients.
Show child attribute
Show child attribute
Create time.
Change time.
ID of the client.
First and second names of the client.
Email of the client.
Organization name.
Client custom key, if you used it when creating the client.
This parameter indicates that this client has users.
The code of the answer.
The message of the answer.
Copy
curl -X POST 'https://api.sendforsign.com/api/client' \
-H 'X-Sendforsign-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"data": {
"action": "list"
}
}'
Copy
{
"clients": [{
"createTime": "2023-12-01 12:18:55",
"changeTime": "2023-12-01 12:18:55",
"clientKey": "CLIENT_KEY",
"fullname": "John Johnson",
"email": "john_johnson@mail.com",
"organization": "Company Inc.",
"customKey": "YOUR_COMBINATION",
"multiple": true
}],
"code": "200",
"message": "Clients found"
}