Security
ApiKeyAuth or BearerAuth
The user to create
POST
- ApiKeyAuth
- BearerAuth
curl -i -X POST \
/v1/users \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"email": "string",
"phone_number": "string"
}'Response
{ "data": { "id": "string", "email": "string", "name": "string", "roles": [ … ], "avatar_url": "string", "phone_number": "string" }, "paging": { "cursors": { … }, "next_page": "string", "prev_page": "string" } }