Skip to content

InboundDetail

Use this API to get detailed information of the specified inbound.

POST /openapi/fulfillment/inbound/v1/detail

Request Body

Parameter Type Required Description
inboundNo string true Identifiers of inbound

Response Body

Name Type Description
code string SUCCESS | ERROR
message string The status code detailed explanation.
data object Please refer to Response Data for details
extra string An exception message (should be empty most of the time).
transactionId string An unique string identifier for each request.
pricingStrategy string Shows you whether this api call will be charged by Ginee, currently all APIs are FREE even though this tag is PAY.

Response Data

Name Type Description
actualInboundQuantity int Actual inbound quantity
itemSku string Item Sku
inboundQuantity int Inbound Quantity
inboundStatus string Please refer to Inbound Status for details

Request Example

Example

curl -X POST  \
-H "X-Advai-Country: ID" \
-H "Authorization: {Your Access Key} + ':' + signature" \
-H "Content-Type: application/json" \
-d '{
        "inboundNo":"89e99fcaee0a3ea84c"
    }' \
"{Ginee Host}/openapi/fulfillment/inbound/v1/list"

Success

{
    "code": "SUCCESS",
    "message": "OK",
    "data": [
        {
            "actualInboundQuantity": 0,
            "itemSku": "GE1-70000-00004-00001",
            "inboundQuantity": 3,
            "inboundStatus": "wait_inbound"
        }
    ],
    "extra": null,
    "transactionId": "19d607ea5d78852a"
}

Failure

{
    "code": "PARAMETER_ERROR",
    "message": "Parameter is invalid: Parameter should not be empty: inboundNo ",
    "data": null,
    "extra": null
}