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": "<string>",
    "profile": {
      "firstName": "<string>",
      "lastName": "<string>",
      "email": "<string>",
      "phone": "<string>"
    },
    "tier": "bronze",
    "status": "active",
    "tags": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer sk_live_... or Bearer sk_test_...

Path Parameters

id
string
required

Customer ID

Response

200 - application/json

Customer details

success
boolean
data
object