GET
/
v1
/
retailers
/
{retailer_id}
/
compliance-reports
/
{id}
curl --request GET \
  --url https://marketplace-api.fabric.inc/v1/retailers/{retailer_id}/compliance-reports/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "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

id
integer
required

The unique identifier of the compliance report. This ID is generated when a compliance report is made and can be found in Dropship UI Compliance Reporting page under Reports.

Example:

3003

Response

200 - application/json
OK
name
string
required

The name of the compliance report

Required string length: 1 - 128
Example:

"Quarterly Financial Compliance"

start
string
required

The start date and time of the compliance report in UTC format.

Example:

"2024-01-01T00:00:00Z"

id
integer

Unique identifier for the compliance report

Example:

12345

description
string | null

A detailed description of the compliance report

Maximum length: 256
Example:

"This report outlines the financial compliance for Q1 2024."

interval
string

The interval at which the compliance report is generated, such as monthly or quarterly.

Required string length: 1 - 8
Example:

"quarterly"

periods
string

Periods for which the compliance report is applicable.

Example:

"Q1, Q2"