GET
/
customers
/
{customer_id}
curl --request GET \
  --url https://api.togai.com/customers/{customer_id} \
  --header 'Authorization: <authorization>'
{
  "id": "01BX5ZZKBKACTAV9WEVGEMMVRZ",
  "name": "ACME Enterprise",
  "primaryEmail": "admin@example.com",
  "address": {
    "phoneNumber": "+919876543210",
    "line1": "2281 Broadway Street",
    "line2": "G-31",
    "postalCode": "29501",
    "city": "Florence",
    "state": "South Carolina",
    "country": "US"
  },
  "status": "ACTIVE",
  "updatedAt": "2020-07-04T12:00:00.000Z",
  "createdAt": "2020-07-04T12:00:00.000Z"
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customer_id
string
required

Response

200 - application/json
id
string
required

Identifier of customer

name
string
required

Name of the Customer

primaryEmail
string
required

Primary email of the customer

billingAddress
string
required

billing address of the customer

address
object
required

billing address of the customer

status
enum<string>
required

Status of the customer

Available options:
ACTIVE,
ARCHIVED
createdAt
string
required
updatedAt
string
required