UMG-US-test
  1. Inbound
UMG-US-test
  • Product
    • Get Product Information
      GET
    • Product Acknowledgement
      POST
  • Outbound Orders
    • Create a SalesOrder
      GET
    • Sales Order Acknowledgement
      POST
  • Ship Confirmation
    • Sales Order Ship Confirmation
      POST
  • Inventory Movement
    • Inventory Movement
      POST
  • Inbound
    • Create Inbound PO
      POST
    • Create RMA
      POST
    • Update RMA
      POST
    • Cancel RMA
      DELETE
  1. Inbound

Create Inbound PO

POST
/business_units/createPO/{businessUnitId}/createPO

Request

Path Params

Body Params application/json

Example
{
    "data": {
        "purchaseOrderNumber": "string",
        "PoType": "string",
        "action": "string",
        "vendorNumber": "string",
        "vendorName": "string",
        "shipmentDate": "string",
        "orderDate": "string",
        "uploadDate": "string",
        "closedDate": "string",
        "expectedDeliveryDate": "string",
        "receivedDate": "string",
        "totalQuantityShipped": 0,
        "totalWeight": 0,
        "weightUom": "string",
        "merchantRefNo": "string",
        "supplierId": "string",
        "notes": "string",
        "address type": "string",
        "shipFrom": {
            "name": "string",
            "address1": "string",
            "address2": "string",
            "address3": "string",
            "city": "string",
            "state": "strin",
            "country": "strin",
            "postalCode": "string",
            "email": "foo@bar.com,fish@sea.net",
            "phoneNumber": "string",
            "faxNumber": "string",
            "attentionTo": "string"
        },
        "containerNumber": "string",
        "lines": [
            {
                "lineNumber": "string",
                "purchaseOrderNumber": "string",
                "purchaseOrderLineNumber": "string",
                "action": "string",
                "skuId": "string",
                "skuName": "string",
                "upc": "string",
                "quantity": 0,
                "quantityUom": "EA",
                "palletId": "string",
                "palletWeight": "string",
                "casesPerPallet": 0,
                "unitsPerCase": 0,
                "manufactureDate": "2019-08-24T14:15:22Z",
                "lot": {
                    "lotId": "string",
                    "expirationDate": "string"
                },
                "countryOfOrigin": "string",
                "dispCode": "string",
                "trackingNumber": "string"
            }
        ]
    }
}

Request Code 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 '/business_units/createPO//createPO' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "purchaseOrderNumber": "string",
        "PoType": "string",
        "action": "string",
        "vendorNumber": "string",
        "vendorName": "string",
        "shipmentDate": "string",
        "orderDate": "string",
        "uploadDate": "string",
        "closedDate": "string",
        "expectedDeliveryDate": "string",
        "receivedDate": "string",
        "totalQuantityShipped": 0,
        "totalWeight": 0,
        "weightUom": "string",
        "merchantRefNo": "string",
        "supplierId": "string",
        "notes": "string",
        "address type": "string",
        "shipFrom": {
            "name": "string",
            "address1": "string",
            "address2": "string",
            "address3": "string",
            "city": "string",
            "state": "strin",
            "country": "strin",
            "postalCode": "string",
            "email": "foo@bar.com,fish@sea.net",
            "phoneNumber": "string",
            "faxNumber": "string",
            "attentionTo": "string"
        },
        "containerNumber": "string",
        "lines": [
            {
                "lineNumber": "string",
                "purchaseOrderNumber": "string",
                "purchaseOrderLineNumber": "string",
                "action": "string",
                "skuId": "string",
                "skuName": "string",
                "upc": "string",
                "quantity": 0,
                "quantityUom": "EA",
                "palletId": "string",
                "palletWeight": "string",
                "casesPerPallet": 0,
                "unitsPerCase": 0,
                "manufactureDate": "2019-08-24T14:15:22Z",
                "lot": {
                    "lotId": "string",
                    "expirationDate": "string"
                },
                "countryOfOrigin": "string",
                "dispCode": "string",
                "trackingNumber": "string"
            }
        ]
    }
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2024-12-20 09:09:25
Previous
Inventory Movement
Next
Create RMA
Built with