Get Serial Numbers of a Purchase Order - Sellercloud API Docs

Get Serial Numbers of a Purchase Order

Overview

The purpose of this endpoint is for getting serial numbers related to a specific purchase order. These are serial numbers that were received during the receiving sessions of the PO.

In order to consume the endpoint you must:

As soon as you do authentication and receive a valid token, it needs to be passed on the call for getting serials of a purchase order.

Endpoint

Example for such endpoint for TT server is https://tt.api.sellercloud.com/rest/api/PurchaseOrders/Serials?id={id}

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/PurchaseOrders/Serials?id={id}

The {id} in the endpoint above should be replaced with a valid Purchase Order ID.

Request

Parameter Data Type Description Is Required
id integer ID of existing purchase order. yes

Response

[
     {
        "ID": 10881,
        "ProductID": "Honey",
        "Price": 1,
        "Serials": [{
            "SerialNumber": "123123"
        }]
    }
]