Skip to main content
GET
/
clients
/
:id
Get Client
curl --request GET \
  --url https://api.example.com/clients/:id
{
  "error": false,
  "client": {
    "id": "49a5ddf8-14ce-11f1-9fcd-2418c6c96a00",
    "name": "albert Epstein",
    "email": "albertE@ralatividad.com"
  }
}

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/andreguti9190/Sistema-de-gestion-de-ventas--Nodejs/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint retrieves detailed information about a single client using their unique ID.

Path Parameters

id
string
required
Client’s unique identifier in UUID format

Response

error
boolean
Indicates if there was an error
client
object
Client information

Response Example

{
  "error": false,
  "client": {
    "id": "49a5ddf8-14ce-11f1-9fcd-2418c6c96a00",
    "name": "albert Epstein",
    "email": "albertE@ralatividad.com"
  }
}

Build docs developers (and LLMs) love