FileForms
Users

Create User

POST
/users

Create a new user.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/users" \  -H "Content-Type: application/json" \  -d '{    "fullName": "string",    "email": "user@example.com"  }'
{  "id": "string",  "fullName": "string",  "email": "user@example.com",  "phoneNumber": "string",  "createdAt": "2019-08-24T14:15:22Z",  "updatedAt": "2019-08-24T14:15:22Z"}