AddressResponse
objectDetails of a customer’s address.
The street address.
Example:345 W Elm St.
Additional street address line.
Example:2nd Floor
The city.
Example:Anaheim
The state.
Example:CA
The ZIP code. Must be a valid United States ZIP code or Canadian postal code.
Example:92802
The type of address (e.g., PRIMARY, LOCAL, BILLING).
Example:PRIMARY
{
"streetAddress": "345 W Elm St.",
"streetAddress2": "2nd Floor",
"city": "Anaheim",
"state": "CA",
"zipcode": "92802",
"type": "PRIMARY"
}AuthorityNumberResponse
objectDetails of a customer’s authority number.
The authority number assigned to the customer.
Example:DL 01-00673-10
Indicates whether the authority number is verified.
Example:true
The type of authority number.
Example:DEALER_LICENSE
{
"number": "DL 01-00673-10",
"verified": true,
"type": "DEALER_LICENSE"
}CustomerResponse
objectA customer record.
The name of the company.
Example:Smart Logistics
The email address of the contact. Must be a valid email address format.
Example:contact@aculogistics.com
Details of a customer’s phone number.
Show Child Parameters
Details of a customer’s address.
Show Child Parameters
Details of a customer’s authority number.
Show Child Parameters
The Central Dispatch customer ID of the customer.
Example:d5c62b14-cbd1-11ee-9a0e-0242ac110002
Indicates if the company has temporarily lost access to their account due to security reasons.
Example:true
{
"companyName": "Smart Logistics",
"email": "contact@aculogistics.com",
"phoneNumbers": [
{
"phoneNumber": "949-555-1323",
"type": "LOCAL",
"extension": "303",
"notes": "Primary contact number"
}
],
"addresses": [
{
"streetAddress": "345 W Elm St.",
"streetAddress2": "2nd Floor",
"city": "Anaheim",
"state": "CA",
"zipcode": "92802",
"type": "PRIMARY"
}
],
"customerAuthorityNumbers": [
{
"number": "DL 01-00673-10",
"verified": true,
"type": "DEALER_LICENSE"
}
],
"customerId": "d5c62b14-cbd1-11ee-9a0e-0242ac110002",
"accessPaused": true
}CustomerSearchCollection
objectA collection of customers.
The URL used to query the current collection of the resource.
Example:https://membership-api.centraldispatch.com/customers/?start=5&limit=1&name=acu
The total count of resources in the collection.
Example:23
A customer record.
Show Child Parameters
The maximum number of items to be returned in the response.
Example:1
{
"href": "https://membership-api.centraldispatch.com/customers/?start=5&limit=1&name=acu",
"count": 23,
"items": [
{
"customerName": "Acu Logistics",
"customerId": "d5c62b14-cbd1-11ee-9a0e-0242ac110002",
"email": "trans-port@notgmail.com",
"phoneNumbers": [
{
"phoneNumber": "949-555-1323",
"type": "LOCAL",
"extension": "303",
"notes": "Primary contact number"
}
],
"addresses": [
{
"streetAddress": "345 W Elm St.",
"streetAddress2": "2nd Floor",
"city": "Anaheim",
"state": "CA",
"zipcode": "92802",
"type": "PRIMARY"
}
],
"customerAuthorityNumbers": [
{
"number": "DL 01-00673-10",
"verified": true,
"type": "DEALER_LICENSE"
}
]
}
],
"limit": 1
}CustomerSearchResponse
objectA customer record.
The customer’s name.
Example:Acu Logistics
The Central Dispatch customer ID of the customer.
Example:d5c62b14-cbd1-11ee-9a0e-0242ac110002
The email address of the customer.
Example:trans-port@notgmail.com
Details of a customer’s phone number.
Show Child Parameters
Details of a customer’s address.
Show Child Parameters
Details of a customer’s authority number.
Show Child Parameters
{
"customerName": "Acu Logistics",
"customerId": "d5c62b14-cbd1-11ee-9a0e-0242ac110002",
"email": "trans-port@notgmail.com",
"phoneNumbers": [
{
"phoneNumber": "949-555-1323",
"type": "LOCAL",
"extension": "303",
"notes": "Primary contact number"
}
],
"addresses": [
{
"streetAddress": "345 W Elm St.",
"streetAddress2": "2nd Floor",
"city": "Anaheim",
"state": "CA",
"zipcode": "92802",
"type": "PRIMARY"
}
],
"customerAuthorityNumbers": [
{
"number": "DL 01-00673-10",
"verified": true,
"type": "DEALER_LICENSE"
}
]
}