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-Out Note PUT
URI
https://{DATACENTER}.brightpearlconnect.com/public-api/{ACCOUNT}
/warehouse-service/goods-note/goods-out/{ID}
Refer to our documentation on URI syntax for more information on how to construct URIs.
Description
This message enables you to update the following attributes of a Goods-Out Note.
- priority: The priority of the goods-out note.
- shipping.shippingMethodId: The Id of the shipping method. This can be retrieved using the Shipping Method GET.
- shipping.boxes: The number of boxes.
- shipping.reference: A string of up to 64 characters.
- shipping.weight: The total weight of products on the goods-out note. The maximum weight can be up to 999,999.99.
- labelUri: The URL to the image of a packing label. This is optional and can be left blank. Max length is 512 characters.
Note: Once the goods-out note has been shipped, no further updates are allowed.
Example
Update goods-out note 22.
Request URI
/goods-note/goods-out/22
Request body
{
"priority": false,
"shipping": {
"shippingMethodId": 1231,
"reference": "REF-H73JD329K",
"boxes": 118,
"weight": "113.28"
},
"labelUri": "http://somedomain.com/packinglabel/image.jpg"
}
Response
{
}