POST
/
api
/
v2
/
users
Criar usuário (subconta)
curl --request POST \
  --url https://server.zapperapi.com/api/v2/users \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "email": "jsmith@example.com"
}'
{
  "user": {
    "id": "<string>",
    "name": "<string>",
    "email": "jsmith@example.com",
    "emailVerified": true,
    "phone": "<string>",
    "phoneVerified": true,
    "document": "<string>",
    "documentType": "CPF",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Body

application/json
name
string
required
email
string<email>
required

Response

201 - application/json

Default Response

user
object
required