Blowhorn API Documentation
  • Welcome
  • API REFERENCE
    • Authentication
      • Customer Authentication
      • Partner Authentication
    • Orders
      • Shipment Orders
      • Marketplace Orders
      • Cancel Order
      • Order Event
      • Order Event History
      • ETA
      • Delivery Partner Details
      • Order Documents
    • Drivers
      • Available Vehicle Class
      • Driver Availability
      • Payday Loan Eligibility
      • Driver Details
      • Driver Balance
      • Driver Deductions
    • Locations
      • Serviceability
      • Hubs
      • Coverage
      • Location Type
      • Storage Type
      • Location Zone
      • Location
    • WMS Inbound
      • Clients
      • Suppliers
      • Purchase Orders
      • Advance Shipping Notice
      • Goods Receipt Note
    • WMS Outbound
      • Shipping Label
      • Shipping Manifest
    • Inventory
      • Product Group
      • Tracking Level
      • Pack Config
      • SKU
      • Inventory
      • Inventory Transaction
    • Webhooks
      • HMAC Authentication
      • Order Status
      • Trip Status
      • Inventory Status
  • Help
    • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. API REFERENCE
  2. WMS Inbound

Goods Receipt Note

GRN is the document of all the received line items (with SKU, quantity and price) from the supplier. It serves as a document for future WMS compliance

Fetch Goods Receipt Notes(GRN)

GET /wms/goods-receipt-note

Use this api to get the details of a single or multiple GRNs like items received, quantity and price etc against the purchase order(This is not mandatory, sometimes we receive inventory without purchase order and that is called Blind Receiving).

Note: In order to reduce the amount of data returned, Either time range on created date, modified date, delivery date or receiving number is mandatory is mandatory when invoking this API.

Query Parameters

Name
Type
Description

po_number

String

Purchase order number against which GRN(s) received.

receiving_number

String

Receiving number of the GRN

description

String

Full or partial description text of matching purchase order

site

String

Site id which received the inventory for the GRN

site_name

String

Site name which received the inventory for the GRN

status

String

Status of the GRN.

Ex:New, In-Progress, Completed, Expired

delivery_date_start

String

Delivery date start which is inclusive to filter the result based on.

Note: This works only if both delivery_date_start and delivery_date_end are provided.

Ex: 2022-01-01

delivery_date_end

String

Delivery date end which is inclusive to filter the result based on.

Note: This works only if both delivery_date_start and delivery_date_end are provided.

Ex: 2022-01-01

invoice_number

String

Invoice number for the GRN.

Headers

Name
Type
Description

API_KEY*

string

API key obtained by the Customer/Partner

{
    "count": 1,
    "previous": null,
    "next": 0,
    "result": [
        {
            "id": 1,
            "sku_lines": [
                {
                    "id": 9,
                    "sku": "Sample 123456",
                    "pack_config": {
                        "id": 4,
                        "tracking_level": "Each",
                        "created_date": "2021-07-30T17:53:01.396745+05:30",
                        "modified_date": "2021-07-30T17:53:01.397988+05:30",
                        "name": "Box of 25",
                        "each_volume": 1,
                        "each_weight": 250,
                        "tag_volume": 1,
                        "use_each_volume": true,
                        "use_tag_volume": false,
                        "uom": null,
                        "created_by": 108434,
                        "modified_by": 108434,
                        "each_dimension": null,
                        "customer": 40082
                    },
                    "created_date": "2022-05-26T12:47:45.228470+05:30",
                    "modified_date": "2022-05-26T12:47:45.228611+05:30",
                    "status": "New",
                    "qty": 77.0,
                    "qty_received": 6.0,
                    "price_per_qty": 22.0,
                    "item_desc": "Nice quality",
                    "created_by": null,
                    "modified_by": null,
                    "purchase_order": 941,
                    "maximum_retail_price": 25.0,
                    "discount": 3.0,
                    "discount_percentage": 12.0
                }
            ],
            "created_date": "2021-09-18T18:24:56.142039+05:30",
            "modified_date": "2021-09-18T18:24:58.238885+05:30",
            "po_number": "180921125456141585",
            "receiving_number": "RN180921125456590192",
            "invoice_number": null,
            "description": null,
            "delivery_date": "2021-09-18T18:24:56.141581+05:30",
            "expiry_date": null,
            "status": "Completed",
            "total_price": 0,
            "batch": null,
            "serial_number": null,
            "file": "http://localhost/media/uploads/documents/wmss/purchaseorder_1/2021-09-18/1W4MYRU/RN180921125456590192.PDF",
            "created_by": 109050,
            "modified_by": 109050,
            "supplier": 4,
            "site": 7
        }
    ]
}
{
  "status": "FAIL",
  "message": "Unauthorized"
}
{
  "status": "FAIL",
  "message": "Unexpected error"
}
{
    "count": 1,
    "previous": null,
    "next": 0,
    "result": []
}
PreviousAdvance Shipping NoticeNextWMS Outbound

Last updated 2 years ago

Was this helpful?