SysOS Help Center
Customers

Retrieve a customer

GET/v1/customers/{id}

Fetch a single customer by id.

Parameters

Name In Type Description
id path string The customer id.

Request

curl --request GET \
  --url https://api.sysos.app/v1/customers/{id} \
  --header "Authorization: Bearer ACCESS_TOKEN" \
  --header "Content-Type: application/json"

Response 200 OK

{
  "id": "cus_4af20b13",
  "name": "Globex Corporation",
  "email": "ops@globex.com",
  "country": "PT",
  "phone": "+351 210 000 000",
  "created_at": "2026-02-04T11:00:00Z"
}