POST
/
users
Create a new user
curl --request POST \
  --url https://api.tapti.ai/users \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "John Doe",
  "email": "john.doe@example.com",
  "phone": "+1234567890"
}'
{
  "id": "690739f7-3e1b-4ceb-a439-23bd9c7ae573",
  "created_at": "2024-12-09T19:15:03.738Z",
  "updated_at": "2024-12-09T19:15:03.738Z",
  "name": "Dev's User 2",
  "email": "devU2@devweb.com",
  "phone": "9546557824",
  "tenant_app_id": "2bac016b-ad8f-4bf9-afb3-a63814bca95f"
}

Create a new user.

Body

application/json

The user to create

The body is of type object.

Response

201
application/json

User created successfully

The response is of type object.