GET
/
v1
/
retailers
/
{retailer_id}
/
carriers
curl --request GET \
  --url https://marketplace-api.fabric.inc/v1/retailers/{retailer_id}/carriers/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "FastShip",
    "service_level": "Express",
    "tracking_url": "https://track.fastship.com/{tracking_number}"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

retailer_id
integer
required

The unique retailer ID. In the Dropship UI this is called the Merchant ID. To find your Merchant ID, click your merchant name in the top nav.

Example:

1001

Response

200 - application/json

A list of carriers

The response is of type object[].