Skip to main content

Introduction

The main purpose of this Goods API Documentation site is provide proper information and examples on how to operate with ship-from-store deliveries and returns via Goods.

The Goods API is organized around REST and has predictable resource-oriented URLs, uses standard HTTP response codes and authentication. Our API accepts form-encoded request bodies and returns JSON-encoded responses.

Getting Started

Open API

You can download an OpenAPI file that defines our API from this link. Feel free to use it to generate an API client or check some details of our API. Read more about OpenAPI at https://www.openapis.org/

Authentication

API requests will result in 401 Unauthorized if your account specific credentials are not present in the request. API credentials should be included in your request using the x-api-key header. We will send you the API key value that will be ready to use in your requests.

Environments

We have two available environments: Sandbox and Production. In this section, we will detail how to get set up in each.

Sandbox

Our Sandbox environment allows you to test your integration with simulated courier bots which mimic real-life deliveries.

Base URL: https://api-sandbox.goodsdelivery.io

Although the integration is hopefully fairly straight-forward, we’re more than happy to support and be hands-on while you’re working on the integration. Please feel free to reach out to niels.thomsen@goodsdelivery.io for any questions you may have, or suggest any times for an online call for help and guidance.

Production

Once your integration is ready and the agreement with Goods has been signed, you can move the Production environment to start requesting Goods deliveries and returns in the real world.

Base URL: https://api.goodsdelivery.io

Common Use Cases

  • Get a quote to see eligibility and associated rates
  • Create a ship-from-store delivery
  • Create a return pick-up request
  • Retrieve a list of supported ZIP-codes
  • Retrieve information and see the status of an existing delivery
  • Setup a webhook when a delivery status updates

Jobs

A job represents either a delivery or a return and is the principal object that you’ll work with. Each job has a pick-up address and a drop-off address. Once created, a job may go through the following status updates which can be observed through the Goods tracking application, Merchant Dashboard, through real-time webhook updates, or through the Get a delivery API endpoint.

Untitled

****Happy Path Job Statuses****

CodeDescription
SCHEDULEDJob scheduled
OUT_FOR_PICKUPOut for pick-up
PICKED_UPHas been picked-up at the pick-up address
AT_HUBAt our hub for sorting
OUT_FOR_DROP_OFFOut for drop-off
COMPLETEDJob has been completed

****Edge Case Job Statuses****

CodeDescription
PICK_UP_FAILEDA courier wasn’t able to pick-up the job a the pick-up location. We’ll do a total of 3 attempts, before the job will be marked completed with a failed reason.
DROP_OFF_FAILEDA courier wasn’t able to drop-off the job a the defined drop-off location. We’ll do a total of 3 attempts, before we’ll return the job to the store.
OUT_FOR_RETURNThe job is out for return to the store after 3 failed drop-off attempts. Afterwards the job will be marked as completed with a failed reason.

Postman Collection

You can run our API in Postman by using our postman collection, which will help you play around with our API endpoints before starting the actual integration work. Click here to run our API in Postman.

Run in Postman

Sequence Diagram

A sequence diagram can various from brand to brand depending on the use cases, however below we’ve create a few simple sequence diagrams of the most common use cases.

Creation of a ship-from-store delivery:

Screen Shot 2023-05-30 at 11.20.16 AM.png

Creation of a return pick-up: