Request
Body Params application/jsonRequired
{
"skip": 0,
"limit": 10,
"search": "string",
"start_date": "string",
"end_date": "string",
"template_id": 0,
"status": "string",
"order_by": "created",
"desc": true
}
Request Code Samples
curl --location --request POST '/user/get_users' \
--header 'Merchant-ID;' \
--header 'X-HMAC;' \
--header 'Content-Type: application/json' \
--data-raw '{
"skip": 0,
"limit": 10,
"search": "string",
"start_date": "string",
"end_date": "string",
"template_id": 0,
"status": "string",
"order_by": "created",
"desc": true
}'
Responses
application/json {
"data": [
{
"id": 12345,
"email": "user@example.com",
"template_id": 1,
"status": "APPROVED",
"rejection_message": null,
"created": "2024-01-15T10:30:00Z"
}
],
"total": 150
}
Modified at 2025-12-23 12:50:57