Get user details by ID

Retrieve detailed information for a specific user

Path Parameters
  • id
    Type: stringFormat: uuid
    required

    User ID

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/users/{id}
curl https://api.gpcn.com/v1/users/123e4567-e89b-12d3-a456-426614174000 \
  --header 'X-API-Key: YOUR_SECRET_TOKEN'
{
  "success": true,
  "message": "",
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "firstName": "John",
    "lastName": "Doe",
    "email": "john.doe@example.com",
    "createdAt": "2026-01-10T09:00:00.000Z",
    "updatedAt": "2026-01-20T14:30:00.000Z",
    "deletedAt": null,
    "inviteStatus": "activated",
    "inviteExpiresAt": null
  },
  "meta": null
}