Customer Information Service

Fetch a customer by ID

Fetch a customer’s information by their ID

get
https://shared-services.kong-sales-engineering.com/kongair/customers/{id}

Path Parameters

idstringrequired

The ID of the customer to fetch

Example:1

Response

application/json

A get action response for a single Customer

Customer

idstring
usernamestring
namestring
informationobject
Show Child Parameters
get/customers/{id}
 
curl --request GET \
  --url https://shared-services.kong-sales-engineering.com/kongair/customers/1 \
  --header 'Accept: application/json' \
  --header 'Authorization: Basic Og==' \
  --header 'Content-Type: application/json'
application/json
{
  "id": "id",
  "username": "username",
  "name": "name",
  "information": {
    "address": "address",
    "phone_number": "phone_number",
    "email": "email",
    "frequent_flier_number": "frequent_flier_number",
    "payment_methods": [
      {
        "id": "id",
        "redacted_card_number": "redacted_card_number",
        "card_holder_name": "card_holder_name",
        "expiration-date": "expiration-date"
      }
    ]
  }
}