This method allows you to mark an order for shipment. To access this step, you must first perform the basic authentication. The data you need to know to enter your software are:
Method: put
Uri: api/order/mark-to-send/{external_id}
Endpoint: http://app.gobeeping.com/api/order/mark-to-send/
Curl example
curl --location --request PUT 'app.gobeeping.com/api/order/mark-to-send/4740717740216' \
--header 'Authorization: Basic XXXXXXXXXX'
In order to perform the put method, you need to identify the following elements:
- {external_id}: corresponds to the order ID of your store. In the case of Shopify, if you enter the order you want to mark to ship, you will find the number at the end of the link, for example:
- 'Authorization: Basic XXXXXXXXXX' : here you must place the Basic Auth obtained in the previous step: how to login.
If you want to know how to list the orders in the system, you can do it by reading this article.