UPS-DOMS-WMS
  1. ASN
UPS-DOMS-WMS
  • UPS-DOMS
    • DOMS to WMS
      • Order
        • Create Sales Order
      • PO
        • Create PO
      • ASN
        • Create ASN
          POST
      • Product
        • Product Information
      • RMA
        • RMA
    • WMS to DOMS
      • Inventory Movement
        • Inventory Movement Information
      • Ship Confirm
        • Order Ship Confirmation
      • Order Status Update
        • Order Status Updates
      • Receipt Confirmation
        • Receipt Confirmation
    • CLIENT-SYS to DOMS
      • ASN Inquiry
      • Inventory Inquiry
  1. ASN

Create ASN

POST
/ups/inbound/createASN
This will Post ASN SKU Information

Request

Header Params
Token
string 
required
Bearer token
Example:
Bearer eyJ0eXBlIjoiU0lHTkVELUpXVCIsIndoc2VfaWQiOiJVUFMiLCJibGRnX2lkIjoiQ0FGQU4iLCJjb21wYW55X25vIjoiRFlTT04iLCJhbGxvd2VkX3BhdGgiOiIiLCJhbGciOiJSUzUxMiJ9.eyJpc3MiOiJzb2Z0ZW9uLmNvbSIsInN1YiI6InNvZnRlb24vYXV0aC9qd3QiLCJleHAiOjE3MTUwNjU0MzMsIm5hbWUiOiJzb2Z0ZW9uIiwic2NvcGUiOiJBUEkifQ.bDyEdwNFuqrT05v7A2_uwRqQ9-S2wJF-1IwWYZYDed5M5ee5VScLD8i2WXjF9cfzNjyARfdVzD-ZZRmH8eycPCzKZowWJ-D-RuTxmxBH2ubizZ5V2uexpNR2nzfAt4L43wGEV-S4-eAlf3LTQdoTgjMYgdRWApm0m_8GpKvG88_idUCpSPui5mD5yjxsWOoSo6rDXqfuGl21K1G5WoV90ULm7sOXj2gKI7feJk7jbQi-whRkIwfNaEm-2iM1x-oQc8u23jyfYp-qidMb5k4ae3jwlA36a7s3d-SKZ56tNsBgQLzJ6rxx5lVC5FwJS5aE1eQSMdoHWLnuMvJIiYB_GQ
WhseId
string 
required
Warehouse Id of Client DOMS
Example:
UPS
BusinessUnit
string 
required
Business Unit Code of the Client in DOMS
Example:
POCSPORTS
BldgId
string 
required
Building Id of the Client in DOMS
Example:
NVRN1
Body Params application/json
data
object 
required
whseId
string 
required
businessUnit
string 
required
buildingId
string 
required
asnNumber
string 
required
shipmentDate
string 
required
carrierCode
string 
required
scacCode
string 
required
shipForm
object 
required
supplierId
string 
required
containerNumber
string 
required
notes
string 
required
refId1
string 
required
refId2
string 
required
refId3
string 
required
refId4
string 
required
refId5
string 
required
lineHeader
array [object {19}] 
required
Example
{
    "data": {
        "whseId": "string",
        "businessUnit": "string",
        "buildingId": "string",
        "asnNumber": "string",
        "shipmentDate": "string",
        "carrierCode": "string",
        "scacCode": "string",
        "shipForm": {
            "name": "string",
            "address1": "string",
            "address2": "string",
            "address3": "string",
            "city": "string",
            "state": "string",
            "country": "string",
            "postalCode": "string",
            "email": "string",
            "phoneNumber": "string",
            "faxNumber": "string",
            "attentionTo": "string"
        },
        "supplierId": "string",
        "containerNumber": "string",
        "notes": "string",
        "refId1": "string",
        "refId2": "string",
        "refId3": "string",
        "refId4": "string",
        "refId5": "string",
        "lineHeader": [
            {
                "lineNumber": "string",
                "purchaseOrderNumber": "string",
                "purchaseOrderLineNumber": "string",
                "skuId": "string",
                "upc": "string",
                "quantity": "string",
                "palletId": "string",
                "palletWeight": "string",
                "manufactureDate": "string",
                "lot": {
                    "lotId": "string",
                    "expirationDate": "string"
                },
                "countryOfOrigin": "string",
                "dispCode": "string",
                "trackingNumber": "string",
                "VendorSku": "string",
                "refId1": "string",
                "refId2": "string",
                "refId3": "string",
                "refId4": "string",
                "refId5": "string"
            }
        ]
    }
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/ups/inbound/createASN' \
--header 'Token: Bearer eyJ0eXBlIjoiU0lHTkVELUpXVCIsIndoc2VfaWQiOiJVUFMiLCJibGRnX2lkIjoiQ0FGQU4iLCJjb21wYW55X25vIjoiRFlTT04iLCJhbGxvd2VkX3BhdGgiOiIiLCJhbGciOiJSUzUxMiJ9.eyJpc3MiOiJzb2Z0ZW9uLmNvbSIsInN1YiI6InNvZnRlb24vYXV0aC9qd3QiLCJleHAiOjE3MTUwNjU0MzMsIm5hbWUiOiJzb2Z0ZW9uIiwic2NvcGUiOiJBUEkifQ.bDyEdwNFuqrT05v7A2_uwRqQ9-S2wJF-1IwWYZYDed5M5ee5VScLD8i2WXjF9cfzNjyARfdVzD-ZZRmH8eycPCzKZowWJ-D-RuTxmxBH2ubizZ5V2uexpNR2nzfAt4L43wGEV-S4-eAlf3LTQdoTgjMYgdRWApm0m_8GpKvG88_idUCpSPui5mD5yjxsWOoSo6rDXqfuGl21K1G5WoV90ULm7sOXj2gKI7feJk7jbQi-whRkIwfNaEm-2iM1x-oQc8u23jyfYp-qidMb5k4ae3jwlA36a7s3d-SKZ56tNsBgQLzJ6rxx5lVC5FwJS5aE1eQSMdoHWLnuMvJIiYB_GQ' \
--header 'WhseId: UPS' \
--header 'BusinessUnit: POCSPORTS' \
--header 'BldgId: NVRN1' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "whseId": "string",
        "businessUnit": "string",
        "buildingId": "string",
        "asnNumber": "string",
        "shipmentDate": "string",
        "carrierCode": "string",
        "scacCode": "string",
        "shipForm": {
            "name": "string",
            "address1": "string",
            "address2": "string",
            "address3": "string",
            "city": "string",
            "state": "string",
            "country": "string",
            "postalCode": "string",
            "email": "string",
            "phoneNumber": "string",
            "faxNumber": "string",
            "attentionTo": "string"
        },
        "supplierId": "string",
        "containerNumber": "string",
        "notes": "string",
        "refId1": "string",
        "refId2": "string",
        "refId3": "string",
        "refId4": "string",
        "refId5": "string",
        "lineHeader": [
            {
                "lineNumber": "string",
                "purchaseOrderNumber": "string",
                "purchaseOrderLineNumber": "string",
                "skuId": "string",
                "upc": "string",
                "quantity": "string",
                "palletId": "string",
                "palletWeight": "string",
                "manufactureDate": "string",
                "lot": {
                    "lotId": "string",
                    "expirationDate": "string"
                },
                "countryOfOrigin": "string",
                "dispCode": "string",
                "trackingNumber": "string",
                "VendorSku": "string",
                "refId1": "string",
                "refId2": "string",
                "refId3": "string",
                "refId4": "string",
                "refId5": "string"
            }
        ]
    }
}'

Responses

🟢200ASN Created
application/json
Body
object {0}
Example
{}
🟠400Bad Request
🟠401Authentication Failed
🔴500Internal Server Error
Modified at 2024-06-06 06:03:38
Previous
Create PO
Next
Product Information
Built with