- Authentication
- Rates
- Shipments
- Tracking
- Batches
- Classifications
- Customer
- Landed Cost
- Manifest
- Webhooks
- Invoices
Get Customers
GET
/Customers/Get/Customer
Customer
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
CustomerKey
string
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://partnerapi.flavorcloud.com/Customers/Get/Customer?CustomerKey'
Responses
🟢200Get Customers Response
application/json
Body
array of:
CustomerKey
string
required
CustomerInfo
object (CreateCustomerResponse)
required
LabelFormat
enum<string>
optional
Allowed values:
PDFZPL
Default:
PDF
WeightUnit
enum<string>
optional
Allowed values:
KGLB
Default:
KG
DimensionUnit
enum<string>
optional
Allowed values:
INCM
Default:
CM
Insurance
enum<string>
optional
Allowed values:
YN
ServiceCode
array[string]
optional
Allowed values:
STANDARDEXPRESSSTANDARD-ECONOMYEXPRESS-ECONOMY
TermsOfTrade
array[string]
optional
Allowed values:
DDPDDU
AccountInformation
object (AccountInformation)
required
ShippingOrigin
object (ShippingOrigin)
required
AveragePackageSettings
object (AveragePackageSettings)
required
PaymentKey
string
required
Example
[
{
"CustomerKey": "string",
"CustomerInfo": {
"LabelFormat": "PDF",
"WeightUnit": "KG",
"DimensionUnit": "CM",
"Insurance": "Y",
"ServiceCode": [
[
"STANDARD",
"EXPRESS",
"STANDARD-ECONOMY",
"EXPRESS-ECONOMY"
]
],
"TermsOfTrade": [
"DDP"
],
"AccountInformation": {
"Name": "string",
"AttentionName": "string",
"AddressLine1": "string",
"AddressLine2": "string",
"AddressLine3": "string",
"City": "string",
"State": "string",
"Country": "string",
"Zip": "string",
"Phone": "string",
"Email": "string",
"TaxID": "string"
},
"ShippingOrigin": {
"LocationName": "string",
"AddressLine1": "string",
"AddressLine2": "string",
"AddressLine3": "string",
"City": "string",
"State": "string",
"Country": "string",
"Zip": "string",
"Phone": "string",
"Email": "string"
},
"AveragePackageSettings": {
"Weight": 0,
"Length": 0,
"Width": 0,
"Height": 0,
"OriginCountryCode": "string"
},
"PaymentKey": "string"
}
}
]
🟠401Authentication Error
🟠422Validation Error
🔴500Error Response
Modified at 2025-04-28 20:50:51