Skip to main content

Get Shipper Info using email

Through this section, we can get the shipper's details just by using the Email Id.

URL Config
Endpoint: https://api.dps.io/api
APIVersion: v1
route: shippers
path: <Your Shipper email>
Method
GET
URL
'https://api.dps.io/api/v1/shippers/details/testapi@dps.io
Request Headers
{
"Content-Type": "application/json",
"x-api-key": "<YOUR_API_KEY>",
"ShipperHash": "<YOUR_SHIPPER_HASH>"
}
Request Body
Not applicable
Curl request
curl --location --request GET 'https://api.dps.io/api/v1/shippers/details/testapi@dps.io' \
--header 'x-api-key: xxxxxxdfjbdjdfjdhfxxxxxxx' \
--header 'ShipperHash: 05K9***************BJG6a' \
--header 'Content-Type: application/json' \
--data-raw ''
Response
[
{
"ShipperHash": "F1WQ******************UI8Gd",
"VendorHash": "8fcb****************15wY6",
"UniqueShipperId": "00057",
"CompanyName": "TestCompany",
"PersonName": "John Doe",
"AddressLine1": "3195 Stanley Avenue",
"AddressLine2": "Garden City",
"City": "Garden City",
"State": "NY",
"Country": "US",
"Zip": "11530",
"Email": "testapi2@dps.io",
"Phone": "9876543210",
"CreatedDate": "2022-10-17 09:21:13.320531",
"LastModified": "2022-10-17 09:21:13.320531",
"IdentityVerified": false,
"AvailableBalance": 0,
"ReferralCode": "",
"CustomerId": null,
"SubscriptionInfo": {},
"TotalQueuedJobs": 0
}
]