Get all Grn Details

Get Grn Details along with multiple filter options

GET https://{{workspace}}.myeshopbox.com/api/v1/grnDetails

This endpoint allows you to get details of Grn.

Query Parameters

NameTypeDescription

sort_order

string

sort_order either desc or asc

sort_by

string

Sort the attribute

page

integer

The number of pages used to offset the results

per_page

integer

The number of items to be return per page

status

String

For fetching Grn details, w.r.t applied filter in response.(Created and Completed)

grnId

String

Grn Id

consignmentNumber

String

Consignment Number of which Grn details should be fetch

inwardOnTo

Date

Date on which grn items are added

inwardOnFrom

String

Date on which grn items are added

Headers

NameTypeDescription

Authentication

string

The Bearer token which allows to grant access to the API

proxyHost*

String

Account slug

{
    "total": 1,
    "perPage": 10,
    "data": [
        {
            "consignmentNumber": "CON/22-23/664563",

            "documentNumber": "ABC",
            "documentDate": "2022-01-12 00:00:00",
            "fromLocation": "xyz",
            "toLocation": "123A",
            "totalOrderedQty": 30,
            "totalReceviedQty": 30,
            "pendingQty": 0,
            "shortageQty": "0",
            "overageQty": "7",
            "consignmentType": "Expected",
            "status": "COMPLETED",
            "totalGrnCount": 3,
            "grnDetails": [
                {
                    "grnId": "G-G0010",
                    "sku": "ProductTest1",
                    "esin": "T1YV73H0TCS",
                    "quantityOrdered": 10,
                    "quantityReceived": 10,
                    "boxNumber":"12345-1",
                    "eshopboxBoxNumber":"123451",
                    "acceptedQty": 7,
                    "rejectedQty": 3,
                    "rejectedDetails": [
                        "Brand name missing",
                        "mrp missing",
                        "tag missing"
                    ],
                    "itemMrp": 30000.0,
                    "unitPrice": 10000.0,
                    "brandName": "DummyBrand",
                    "batchTrackingEnabled": false,
                    "batchingInfo": {
                        "batchingMethod": null
                    },
                    "inwardOn": "2023-01-13 12:00:00"
                },
                {
                    "grnId": "G-G001000",
                    "sku": "ProduTest1",
                    "esin": "T1YVH0TCS",
                    "rejectedDetails": [],
                    "acceptedQty": 10,
                    "quantityOrdered": 10,
                    "quantityReceived": 10,
                    "boxNumber":"12345-2",
                    "eshopboxBoxNumber":"123452",
                    "rejectedQty": 0,
                    "itemMrp": 30000.0,
                    "batchTrackingEnabled": false,
                    "batchingInfo": {
                        "batchingMethod": null
                    },
                    "brandName": "DummyBrand",
                    "unitPrice": 10000.0,
                    "inwardOn": "2023-01-13 12:00:00"
                },
                {
                    "grnId": "G-G001000",
                    "sku": "ProduTest1",
                    "esin": "T1YVH0TCS",
                    "rejectedDetails": [
                        "damaged Product"
                    ],
                    "acceptedQty": 9,
                    "quantityOrdered": 10,
                    "quantityReceived": 10,
                    "boxNumber":"12345-3",
                    "eshopboxBoxNumber":"123453",
                    "rejectedQty": 1,
                    "itemMrp": 30000.0,
                    "unitPrice": 10000.0,
                    "brandName": "DummyBrand",
                    "batchTrackingEnabled": false,
                    "batchingInfo": {
                        "batchingMethod": null
                    },
                    "inwardOn": "2023-01-13 12:00:00"
                }
            ]
        }
    ]
}

curl --location -g --request GET 'https://{{workspace}}.myeshopbox.com/api/v1/grnDetails?page=1&perPage=10&inwardOnFrom=2023-01-09&inwardOnTo=2023-01-31
--header 'Content-Type: application/json'
--header 'proxyHost: AccountSlug'

Last updated