You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
GET /shipment/:id - retrieves a shipping mission. id is the airtable ID for said mission
PATCH /shipment/:id - edits a shipment, BEFORE THE LABEL IS CREATED. If a label is created, we return 400 (needs a better code). id is the airtable ID for said mission
DELETE /shipment/:id - deletes a shipment BEFORE THE LABEL IS CREATED. If a label is created, we return 400 (needs a better code). id is the airtable ID for said mission.
GET /shipments/:id/label - Buys & generates labels for the shipment. Returns a 2 page PDF, including the outer address label & the inside note. Accepts a query param method that can override the default shipping method of the scenario
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The meat of the whole system :)
/ship
- creates a shipment/shipment/:id
- retrieves a shipping mission. id is the airtable ID for said mission/shipment/:id
- edits a shipment, BEFORE THE LABEL IS CREATED. If a label is created, we return 400 (needs a better code). id is the airtable ID for said mission/shipment/:id
- deletes a shipment BEFORE THE LABEL IS CREATED. If a label is created, we return 400 (needs a better code). id is the airtable ID for said mission./shipments/:id/label
- Buys & generates labels for the shipment. Returns a 2 page PDF, including the outer address label & the inside note. Accepts a query parammethod
that can override the default shipping method of the scenarioThe text was updated successfully, but these errors were encountered: