GET
/
v1
/
retailers
/
{retailer_id}
/
compliance-reports
curl --request GET \
  --url https://marketplace-api.fabric.inc/v1/retailers/{retailer_id}/compliance-reports/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 3,
  "next": "https://api.example.org/demo/reports/?page=2",
  "previous": "https://api.example.org/demo/reports/?page=1",
  "results": [
    {
      "id": 12345,
      "name": "Quarterly Financial Compliance",
      "description": "This report outlines the financial compliance for Q1 2024.",
      "interval": "quarterly",
      "start": "2024-01-01T00:00:00Z",
      "periods": "Q1, Q2"
    }
  ]
}

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

OK

The response is of type object.