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

Show

GET
/users/individual/{user_id}
User
Endpoint Show (GET)
Esse Endpoint é responsável por mostrar as informações de um User

Requisição

Parâmetros de Caminho

Parâmetros Header

Respostas

🟢200OK
text/plain
[
{
"id": "2afbcb3b-d77d-452f-8655-0a9e92bc0a6a",
"name": "name-api",
"username": "user-api",
"email": "user-api@gmail.com",
"phone": "551999999999",
"active": true,
"userEnterprise": {
"id": "b26d7505-0d0b-448f-95dc-1b64accfc604",
"user_id": "2afbcb3b-d77d-452f-8655-0a9e92bc0a6a",
"enterprise_id": "a840567c-807c-4ec6-9de6-595e04342ef8",
"companies": [
{
"id": "b8b569a9-7ea7-4a64-aefb-8a1fe6c187e7",
"reference": "Storycrm",
"identify": "StoryCRM",
"address": "Av. Brig. Faria Lima, 5432 - Itaim BibiSão Paulo - SP, 04545-015",
"addressData": null,
"enterprise_id": "a840567c-807c-4ec6-9de6-595e04342ef8",
"wallet": {
"id": "7b270200-5cf3-4a81-aed6-0462699f2867",
"value": 0,
"company_id": "b8b569a9-7ea7-4a64-aefb-8a1fe6c187e7",
"created_at": "2025-10-15T18:56:40.000Z"
},
"created_at": "2025-10-15T18:56:40.000Z"
}
]
},
"roles": [],
"permissions": [
{
"id": "3b7d5218-17e3-4f3e-b1a3-d193a812c3a6",
"name": "ADM",
"description": "ADM",
"enterprise_id": "54f083f9-640c-4025-b1a7-183f7b4de20c",
"created_at": "2025-10-13T20:42:58.000Z",
"updated_at": "2025-10-13T20:42:58.000Z"
}
],
"last_access": null,
"inactivated_at": null,
"created_at": "2025-11-11T20:30:24.000Z",
"deleted_at": null
}
]
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/users/individual/' \
--header 'Authorization: Bearer $TOKEN'
Response Response Example
[
  {
    "id": "2afbcb3b-d77d-452f-8655-0a9e92bc0a6a",
    "name": "name-api",
    "username": "user-api",
    "email": "user-api@gmail.com",
    "phone": "551999999999",
    "active": true,
    "userEnterprise": {
      "id": "b26d7505-0d0b-448f-95dc-1b64accfc604",
      "user_id": "2afbcb3b-d77d-452f-8655-0a9e92bc0a6a",
      "enterprise_id": "a840567c-807c-4ec6-9de6-595e04342ef8",
      "companies": [
        {
          "id": "b8b569a9-7ea7-4a64-aefb-8a1fe6c187e7",
          "reference": "Storycrm",
          "identify": "StoryCRM",
          "address": "Av. Brig. Faria Lima, 5432 - Itaim BibiSão Paulo - SP, 04545-015",
          "addressData": null,
          "enterprise_id": "a840567c-807c-4ec6-9de6-595e04342ef8",
          "wallet": {
            "id": "7b270200-5cf3-4a81-aed6-0462699f2867",
            "value": 0,
            "company_id": "b8b569a9-7ea7-4a64-aefb-8a1fe6c187e7",
            "created_at": "2025-10-15T18:56:40.000Z"
          },
          "created_at": "2025-10-15T18:56:40.000Z"
        }
      ]
    },
    "roles": [],
    "permissions": [
      {
        "id": "3b7d5218-17e3-4f3e-b1a3-d193a812c3a6",
        "name": "ADM",
        "description": "ADM",
        "enterprise_id": "54f083f9-640c-4025-b1a7-183f7b4de20c",
        "created_at": "2025-10-13T20:42:58.000Z",
        "updated_at": "2025-10-13T20:42:58.000Z"
      }
    ],
    "last_access": null,
    "inactivated_at": null,
    "created_at": "2025-11-11T20:30:24.000Z",
    "deleted_at": null
  }
]
Modificado em 2025-10-14 04:55:39
Página anterior
Create
Próxima página
Update
Built with