No results found
- Utilities
-
Accounting
- Accounting Period
- Accounting Period Lock
- All transaction statement
- Contact balance
- Currency
- Customer Payment
- Exchange Rate
- Journal
- Journal Entry
- Nominal Code
- Payment Method
- Purchase Credit
- Purchase Invoice
- Purchase Payment
- Purchase Payment Total
- Sale Payment Total
- Sales Credit
- Sales Invoice
- Sales Receipt
- Sales Receipt (deprecated)
- Supplier Payment
- Tax Code
- Contact
- Integration
-
Order
- Custom Field Metadata
- Forget Contact
- Landed Cost Estimate
- Order
- Order Acknowledgement
- Custom Field
- Order Note
- Order Row
- Order Shipping Status
- Order Status
- Order Status Update
- Order Stock Status
- Order Type
- Purchase Credit Close
- Purchase Order Close
- Sales Credit
- Sales Credit Close
- Sales Order
- Sales Order Close
- Sales Order Row
- Pricing
-
Product
- Brand
- Brightpearl Category
- Channel
- Channel brand
- Collection
- Discount contact usage
- Discount total usage
- Option
- Option Value
- Price List
- Product Primary Supplier
- Product
- Product Bundle
- Product Custom Field
- Custom Field Metadata
- Custom Field
- Product Group
- Product Identity
- Product option value
- Product Price
- Product Supplier
- Product Type
- Product Type Option Association
- Season
-
Warehouse
- Asset Value Correction
- Bundle Availability
- Default Location
- Drop-Ship Note
- Drop-Ship Note Event
- External Transfer
- Fulfilment Source
- Order fulfilment status
- Goods-In Note Correction
- Goods-In Note
- Goods Movement
- Goods-Out Note
- Goods-Out Note Event
- Internal Transfer
- Location
- Pick
- Product Availability
- Quarantine Location
- Quarantine Release
- Reservation
- Reservation Row
- Reservations
- Shipping Method
- Stock Correction
- Stock Transfer
- Warehouse
- Warehouse Defaults
- Zone
Goods-In Note POST
URI
https://{DATACENTER}.brightpearlconnect.com/public-api/{ACCOUNT}
/warehouse-service/order/{ID}/goods-note/goods-in
Refer to our documentation on URI syntax for more information on how to construct URIs.
Description
This message enables you to create a new Goods-In Note.
Goods-In Note's can be created until all stock on the Purchase Order has been added to one or more Goods-In Note's. This allows you to part receive stock against one purchase order.
You can only create Goods-In Note's against a single Warehouse per request.
The response from this message is the Id of the newly created Goods-In Note.
Field Specifics:
- transfer: Defines whether this Goods-In Note is a result of an External Transfer.
- userBatchReference: Enables you to specify your own reference for this goods in note. Optional. Must Be Unique across all goods-in notes.
Example
In this example we are receiving stock against Purchase Order with Id of 6.
Request URI
/order/6/goods-note/goods-in
Request body
{
"transfer": false,
"warehouseId": 2,
"goodsMoved": [
{
"productId": 1008,
"purchaseOrderRowId": 9,
"quantity": 5,
"destinationLocationId": 2,
"productValue": {
"currency": "GBP",
"value": 12.0000
}
},
{
"productId": 1007,
"purchaseOrderRowId": 10,
"quantity": 6,
"destinationLocationId": 2,
"productValue": {
"currency": "GBP",
"value": 9.0000
}
},
{
"productId": 1009,
"purchaseOrderRowId": 11,
"quantity": 15,
"destinationLocationId": 2,
"productValue": {
"currency": "GBP",
"value": 4.0000
}
}
],
"receivedOn": "2011-07-15T14:48:56.000+01:00",
"userBatchReference": "ourWarehouRef:34354"
}
Response
{
"response": 13
}