View an ASN

HTTP Request

GET /v1/receiving-asn/{receivingASNId}?clientId={clientId}

Summary

This operation retrieves an Advanced Shipment Notification (ASN) by specifying the ASN ID (receivingASNId) assigned by Pitney Bowes.

Request URLs

Sandbox: https://shipping-api-sandbox.pitneybowes.com/shippingservices/fulfillment/v1/receiving-asn/{receivingASNId}?clientId={clientId}
Production: https://shipping-api.pitneybowes.com/shippingservices/fulfillment/v1/receiving-asn/{receivingASNId}?clientId={clientId}

Path Parameter

Name

Description

receivingASNId


Required. The ASN ID assigned by Pitney Bowes, as returned in the receivingASNId field by the Create ASN operation.

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 (-), and underscores (_).

Important: Ensure this is a unique ID.

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:

  • PO: Purchase Order

  • ASN: Advanced Shipment Notification

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:

  • CREATED

  • INPROGRESS

  • UPDATED

  • ARRIVED

  • COMPLETE

  • CANCELED

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: YYYY-MM-DDThh:mm:ssZ

updateDate

String

The date and time the ASN was updated, specified in the ISO 8601 format: YYYY-MM-DDThh:mm:ssZ

estimatedDeliveryDate

String

The date and time the shipment is expected to be delivered to Pitney Bowes, specified in the ISO 8601 format: YYYY-MM-DDThh:mm:ssZ

receivedDate

String

The date and time the ASN was received, specified in the ISO 8601 format: YYYY-MM-DDThh:mm:ssZ

pbCreateDate

String

The date and time the ASN was created in the Pitney Bowes system, specified in the ISO 8601 format: YYYY-MM-DDThh:mm:ssZ

pbUpdateDate

String

The date and time the ASN was updated in the Pitney Bowes system, specified in the ISO 8601 format: YYYY-MM-DDThh:mm:ssZ

pbDeliveredDate

String

The date and time the ASN was delivered to Pitney Bowes, specified in the ISO 8601 format: YYYY-MM-DDThh:mm:ssZ

totalWeight

Object

The weight of the shipment.

totalWeight.weight

Number

The weight.

totalWeight.unitOfMeasurement

String

The weight’s unit of measurement. Possible value:

  • LB: Pounds

totalVolume

Object

The volume of the shipment.

totalVolume.volume

String

The volume.

totalVolume.unitOfMeasurement

String

The volume’s unit of measurement. Possible values:

  • CubicInches

  • CubicFeet

  • CubicCentimeters

  • CubicMeter

fromAddress

Address Object

The address of the shipper.

toAddress

Address Object

The address of the facility where the shipment will be received.

billingAddress

Address Object

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:

  • name: A String value that defines the reference the field, up to 50 characters.

  • value: A String value that defines the reference value, up to 255 characters.

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 GET ".../v1/receiving-asn/ASN156A0029204893659052712?clientId=1234" \
-H "Authorization: Bearer <oauth_token>" \
-H "X-PB-TransactionId: <unique_identifier>"

Sample Response

{
    "clientId": "1234",
    "inboundType": "ASN",
    "clientASNId": "ORASN123-2112-11232",
    "purchaseOrderNumber": "Not Applicable",
    "receivingASNId": "ASN156A0029204893659052712",
    "status": "UPDATED",
    "receivingNode": "FACILITY-1",
    "vendorDetails": {
        "name": "Vendor ABC",
        "code": "VENDOR-121"
    },
    "shippingDetails": {
        "carrier": "UPS",
        "serviceId": "UPSG"
    },
    "createDate": "2022-04-06T20:01:39Z",
    "updateDate": null,
    "estimatedDeliveryDate": "2022-04-23T00:00:00Z",
    "pbCreateDate": "2022-04-07T14:09:21Z",
    "pbUpdateDate": null,
    "pbDeliveredDate": null,
    "toAddress": {
        "name": "Pitney Bowes Facility",
        "email": "pb@example.com",
        "addressLines": [
            "1200 WORLDWIDE BLVD"
        ],
        "cityTown": "Hebron",
        "stateProvince": "KY",
        "postalCode": "41048",
        "countryCode": "US"
    },
    "notes": "Note 1",
    "additionalReferences": [],
    "asnLines": [ {
        "lineId": 100,
        "purchaseOrderNumberLineId": 100,
        "PBlineId": 1,
        "sku": "PRODUCT-SKU-001",
        "inventoryType": "NEW",
        "originCountryCode": "US",
        "expectedQuantity": 100,
        "unitOfMeasurement": "EACH",
        "estimatedDeliveryDate": "2022-04-06T20:01:39Z",
        "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).