idstringrequired
The ID of the customer to fetch
Example:1
Fetch a customer’s information by their ID
The ID of the customer to fetch
Example:1
A get action response for a single Customer
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'{
"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"
}
]
}
}