1. User
  • Introdução
    • Comece Aqui
    • Autenticação
    • Recursos
  • API
    • Enterprise
      • Overview
      • Create
      • Show
      • Update
      • Delete
      • Index
      • Profile
    • Company
      • Overview
      • Create
      • Show
      • Update
      • Delete
      • Index
    • Order
      • Overview
      • Create
      • Show
      • Update
      • Delete
      • Index
      • Search external
    • Customer
      • Create
      • Show
      • Update
      • Delete
      • Index
      • Validate phone
      • Blocked (batch)
      • Search individual
      • Search external
      • Track Record
      • Point
    • Withdrawal
      • Rescue
      • Reactivate
      • Show
      • Delete
      • Index
      • Search available
      • Quantity
      • Quantity Company (Monthly)
      • Quantity (Last Days)
    • Activation
      • Create
      • Update
      • Show
      • Delete
    • Promotion
      • Create
      • Update
      • Show
      • Delete
      • Index
    • Submission
      • Index
      • Show
      • Delete
    • Individual
      • Create
      • Index
      • Delete
    • Campaign
      • Create
      • Show
      • Update
      • Delete
      • Index
    • Profile
      • Profile
      • Update profile
      • Update password profile
      • Inactivate
    • User
      • Create
        POST
      • Show
        GET
      • Update
        PUT
      • Delete
        DELETE
      • Index
        GET
    • Role
      • Create
      • Index
    • Permission
      • Create
      • Index
      • Delete
      • Show
      • Update
    • Status
      • Create
      • Index
      • Update
      • Delete
    • Tag
      • Create
      • Index
      • Update
      • Delete
    • Segment
      • Create
      • Show
      • Update
      • Delete
      • Index
      • Pre Query Builder Segment
    • Product
      • Create
      • Show
      • Update
      • Delete
      • Index
      • Search external
      • Quantity
      • Quantity Sale Product Enterprise
      • Quantity Sale Product Enterprise (Monthly)
    • Webhooks
      • Overview
      • Create
      • Index
      • Delete
    • Billing
      • Quota
      • Index
      • Show
    • User Access Pin
      • Request
      • Revalidate
    • Target
      • Create
      • Delete
    • Redeem
      • Create
      • Index
    • Reward
      • Create
      • Index
      • Update
      • Delete
      • Show
      • Update active
    • Subscription
      • Index
      • Webhook Asaas
    • Payment Profile
      • Index
      • Update
  1. User

Create

POST
/users/individual
User
Endpoint Create (POST)
Esse Endpoint é responsável por criar um User dentro de uma Enterprise

Requisição

Authorization
Adicionar o parâmetro
Authorization
a Cabeçalhos
, cujo valor é concatenar o Token após o Bearer.
Exemplo:
Authorization: Bearer ********************
Parâmetros Header

Parâmetros Bodymultipart/form-data

Respostas

🟢200OK
text/plain
[
{
"id": "2afbcb3b-d77d-452f-8655-0a9e92bc0a6a",
"name": "User-API",
"username": "User-API-User",
"email": "user-api@gmail.com",
"phone": "5511908762735",
"roles": [],
"permissions": [
{
"id": "3b7d5218-17e3-4f3e-b1a3-d193a812c3a6",
"name": "ADM",
"description": "ADM",
"enterprise_id": "a840567c-807c-4ec6-9de6-595e04342ef8",
"created_at": "2025-10-13T20:42:58.000Z",
"updated_at": "2025-10-13T20:42:58.000Z"
}
],
"created_at": "2025-11-11T20:30:24.000Z",
"deleted_at": null
}
]
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/users/individual' \
--header 'Authorization: Bearer <token>' \
--form 'name=""' \
--form 'username=""' \
--form 'email=""' \
--form 'phone=""' \
--form 'password=""' \
--form 'permission_id=""' \
--form 'companies=""' \
--form 'roles=""'
Response Response Example
[
  {
    "id": "2afbcb3b-d77d-452f-8655-0a9e92bc0a6a",
    "name": "User-API",
    "username": "User-API-User",
    "email": "user-api@gmail.com",
    "phone": "5511908762735",
    "roles": [],
    "permissions": [
      {
        "id": "3b7d5218-17e3-4f3e-b1a3-d193a812c3a6",
        "name": "ADM",
        "description": "ADM",
        "enterprise_id": "a840567c-807c-4ec6-9de6-595e04342ef8",
        "created_at": "2025-10-13T20:42:58.000Z",
        "updated_at": "2025-10-13T20:42:58.000Z"
      }
    ],
    "created_at": "2025-11-11T20:30:24.000Z",
    "deleted_at": null
  }
]
Modificado em 2025-11-10 16:06:54
Página anterior
Inactivate
Próxima página
Show
Built with