Skip to main content
GET
/
api
/
v1
/
customers
/
{id}
Obtener cliente por ID
curl --request GET \
  --url https://api.lapyme.com.ar/api/v1/customers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "email": "[email protected]",
    "phone": "<string>",
    "taxId": "<string>",
    "taxIdType": "<string>",
    "taxCategory": "<string>",
    "address": "<string>",
    "apartment": "<string>",
    "city": "<string>",
    "province": "<string>",
    "isActive": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Incluí tu API key en el header Authorization con el prefijo Bearer

Path Parameters

id
string<uuid>
required

ID único del cliente

Example:

"cust-123e4567"

Response

Cliente obtenido exitosamente

success
boolean
required
Example:

true

data
object
required