Retrieve a fulfillment
Method : GET
https://admin.vucustom.com/api/:api_version/fulfillments?id=&tracking_number=
URL Parameters
Field Name
Description
id
System-generated unique identifier for the fulfillment
tracking_number
Carrier-provided tracking number
200 Successful response example
{
"fulfillment": {
"id": 78,
"tracking_number": "12345",
"carrier_name": "Fedex",
"carrier_code": "FED",
"service_name": "Next day air",
"service_code": "NDA",
"weight": "1.5",
"recipient": {
"recipient_address_1": "test str 1",
"recipient_city": "Test",
"recipient_name": "Test Test",
"recipient_state_region": "DE",
"recipient_country": "US",
"recipient_postal_code": "123",
"recipient_phone": "123"
},
"dimensions": {
"height": "3.5",
"width": "3.0",
"length": "3.0"
},
"order_lines": [
{
"id": 110,
"order_line_id": 391,
"quantity": 1
}
]
}
}
Last updated