Cancel an ASN¶
HTTP Request¶
PUT /v1/receiving-asn/{receivingASNId}/cancel?clientId={clientId}
Summary¶
This operation cancels the complete ASN (Advanced Shipment Notification). You cannot cancel only part of an ASN.
Request URLs¶
Sandbox: https://shipping-api-sandbox.pitneybowes.com/shippingservices/fulfillment/v1/receiving-asn/{receivingASNId}/cancel?clientId={clientId}
Production: https://shipping-api.pitneybowes.com/shippingservices/fulfillment/v1/receiving-asn/{receivingASNId}/cancel?clientId={clientId}
Path Parameter¶
Name |
Description |
---|---|
receivingASNId |
Required. The ASN ID assigned by Pitney Bowes, as returned in the |
Query Parameters¶
Name |
Description |
---|---|
clientId |
Required. The client ID assigned by Pitney Bowes. |
brand |
The manufacturer’s brand name for the item. |
Request Headers¶
Name |
Description |
---|---|
Authorization |
Required. OAuth token generated using the Generate an OAuth Token API. |
X-PB-TransactionId |
Required. A unique identifier for the request, up to 25 characters. The following characters are allowed: letters, numbers, hyphens ( Important: Ensure this is a unique ID. |
Request Elements¶
Send an empty request body.
Response Elements¶
Name |
Data Type |
Description |
---|---|---|
clientId |
String |
The client ID assigned by Pitney Bowes. |
brand |
String |
The manufacturer’s brand name for the item, up to 30 characters. |
inboundType |
String |
The type of inbound shipment. Possible values:
|
clientASNId |
String |
A unique order ID assigned by the client, up to 35 characters. |
purchaseOrderNumber |
String |
The purchase order number, up to 35 characters. |
invoiceNumber |
String |
Reserved for future use. |
receivingNode |
String |
The ID of the facility that will receive the incoming shipment. |
vendorDetails |
Object |
The vendor. |
vendorDetails.name |
String |
The name of the vendor, up to 50 characters. |
vendorDetails.code |
String |
The unique code assigned to the vendor. |
receivingASNId |
String |
The ASN ID assigned by Pitney Bowes. |
status |
String |
The status of the ASN. Possible values:
|
shippingDetails |
Object |
The carrier details for the shipment. |
shippingDetails.carrier |
String |
The name of the carrier, up to 30 characters. |
shippingDetails.serviceId |
String |
The ID of the carrier service, up to 30 characters. |
shippingDetails.serviceName |
String |
Reserved for future use - The name of the carrier service, up to 30 characters. |
shippingDetails.trackingNumber |
String |
Reserved for future use - The assigned tracking number, up to 40 characters. |
createDate |
String |
The date and time the ASN was ordered, specified in the ISO 8601 format: |
updateDate |
String |
The date and time the ASN was updated, specified in the ISO 8601 format: |
estimatedDeliveryDate |
String |
The date and time the shipment is expected to be delivered to Pitney Bowes, specified in the ISO 8601 format: |
receivedDate |
String |
The date and time the ASN was received, specified in the ISO 8601 format: |
pbCreateDate |
String |
The date and time the ASN was created in the Pitney Bowes system, specified in the ISO 8601 format: |
pbUpdateDate |
String |
The date and time the ASN was updated in the Pitney Bowes system, specified in the ISO 8601 format: |
pbDeliveredDate |
String |
The date and time the ASN was delivered to Pitney Bowes, specified in the ISO 8601 format: |
totalWeight |
Object |
The weight of the shipment. |
totalWeight.weight |
Number |
The weight. |
totalWeight.unitOfMeasurement |
String |
The weight’s unit of measurement. Possible value:
|
totalVolume |
Object |
The volume of the shipment. |
totalVolume.volume |
String |
The volume. |
totalVolume.unitOfMeasurement |
String |
The volume’s unit of measurement. Possible values:
|
fromAddress |
The address of the shipper. |
|
toAddress |
The address of the facility where the shipment will be received. |
|
billingAddress |
Reserved for future use. |
|
additionalReferences |
Array[Object] |
Defines customer reference information for the ASN. Each object in the array is a name-value pair with the following fields:
|
asnLines |
Array[ASN Lines Object] |
The line-level details of the ASN. |
name |
String |
The name of the ASN, up to 100 characters. |
pallets |
Integer |
The number of pallets. |
cartons |
Integer |
The number of cartons. |
Sample Request¶
curl -X PUT ".../v1/receiving-asn/ASN156A0029204893659052712/cancel?clientId=1234" \
-H "Authorization: Bearer <oauth_token>" \
-H "X-PB-TransactionId: <unique_identifier>" \
-d ''
Sample Response¶
{
"clientId": "1234",
"inboundType": "ASN",
"clientASNId": "ORASN123-2112-11232",
"purchaseOrderNumber": "PO#11121888211",
"receivingASNId": "ASN156A0029204893659052712",
"status": "CANCELLED",
"receivingNode": "160",
"vendorDetails": {
"name": "Vendor ABC",
"code": "VENDOR-121"
},
"shippingDetails": {
"carrier": "UPS",
"serviceId": "UPSG"
},
"createDate": "<date>",
"updateDate": "<date>",
"estimatedDeliveryDate": "<date>",
"pbCreateDate": "<date>",
"pbUpdateDate": null,
"pbDeliveredDate": null,
"toAddress": {
"name": "Pitney Bowes Facility",
"company": "Pitney Bowes",
"phone": "1234567890",
"email": "user@example.com",
"addressLines": [
"1200 WORLDWIDE BLVD"
],
"cityTown": "Hebron",
"stateProvince": "KY",
"postalCode": "41048",
"countryCode": "US"
},
"additionalReferences": [ {
"name": "REFERENCE-1",
"value": "Ref1"
} ],
"asnLines": [ {
"lineId": 100,
"purchaseOrderNumberLineId": 100,
"PBlineId": 1,
"sku": "PRODUCT-SKU-001",
"inventoryType": "NEW",
"originCountryCode": "US",
"expectedQuantity": 100,
"unitOfMeasurement": "EACH",
"estimatedDeliveryDate": "<date>",
"costDetails": {
"retailPrice": 15,
"wholeSalePrice": 10,
"unitCost": 15,
"currency": "USD"
}
},
...
],
"name": "<manifest-name>",
"carton": 2,
"pallets": 3
}
Error Codes¶
For lists of error codes returned by the Fulfillment APIs, please see 80-Prefix Error Codes (Fulfillment APIs).