User
Create user
Create a new user
- Create a new user with the provided details.
- Crie um novo usuário com os detalhes fornecidos.
post/users
Request body
Example request
{
"company_id": 1,
"email": "john.doe@example.com",
"name": "John Doe",
"phone": "(11)99999-9999",
"role": "MASTER",
"tax_number": "123.456.789-01"
}Response
Created
Example response
{
"blocked_at": "null",
"company_id": 1,
"created_at": "2024-09-06T17:37:43.464658136Z",
"email": "john.doe@example.com",
"id": 1,
"language": "portuguese",
"name": "John Doe",
"phone": "(11)99999-9999",
"role": "MASTER",
"tax_number": "123.456.789-01",
"timezone": "UTC-3",
"updated_at": "2024-09-06T17:37:43.464658136Z"
}