Skip to main content
GET
/
api
/
v1
/
customers
/
{id}
Get a specific customer by ID
curl --request GET \
  --url https://api.g-tateth.com/api/v1/customers/{id} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "data": {
    "_id": "64a1b2c3d4e5f6789012345b",
    "profile": {
      "firstName": "Jane",
      "lastName": "Smith",
      "email": "jane.smith@example.com",
      "phone": "+2348012345678",
      "company": "Acme Corp",
      "jobTitle": "Head of Operations"
    },
    "tier": "gold",
    "status": "active",
    "tags": [
      "vip",
      "enterprise"
    ],
    "customFields": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer sk_live_... (production) or Bearer sk_test_... (staging). Obtain keys from Settings → Developer Console.

Path Parameters

id
string
required

Customer ID

Response

200 - application/json

Customer details

success
boolean
data
object