Merchants
- Overview
- Plan Your Dropship Implementation
- Dropship Integrations
- Merchant Best Practices
- Integrations
- Orders
- Products
- Suppliers
- Reports
- Settings
- Support
Merchant API Endpoints
- Authentication in Dropship
- Carriers
- Compliance Reports
- Connection Invites
- Inventory
- Invoices
- Orders
- Products
- Proposals
- Returns
- Shipments
- Webhooks
Suppliers
- Overview
- Getting Started
- Integrations
- Orders
- Products
- Reports
- Settings
Connection Invites
Get terms & conditions status
Retrieve whether T&Cs have been accepted for connections.
GET
/
v1
/
retailers
/
{retailer_id}
/
connections
/
t-and-c-status
curl --request GET \
--url https://marketplace-api.fabric.inc/v1/retailers/{retailer_id}/connections/t-and-c-status/ \
--header 'Authorization: Bearer <token>'
{
"count": 3,
"next": "https://api.example.org/demo/accounts/?page=2",
"previous": "https://api.example.org/demo/accounts/?page=1",
"results": [
{
"id": 12345,
"brand": "TechCorp",
"retailer": "Retailer X",
"level": "transactions_and_products",
"status": "active",
"suspended_at": "2024-04-01T12:00:00Z",
"created_at": "2024-03-01T12:00:00Z",
"updated_at": "2024-04-01T12:00:00Z",
"shipping_accounts": "FedEx, UPS",
"options": "Gift Wrapping Available",
"attachments": "Attachment1.pdf",
"approved_items_count": "5",
"orders_last_7_days_count": "10",
"proposals_received_last_7_days_count": "3",
"contacts": "contact1@example.com, contact2@example.com",
"memos": "Terms accepted on 2024-03-01.",
"referral": "Referred by John Doe",
"commission_profile": "Standard Commission",
"integration_type": "api",
"onboarding_status": "pending",
"retailer_identifier": "Retailer-01",
"onboarding_target_date": "2024-04-30T00:00:00Z",
"intro_call_date": "2024-03-01T12:00:00Z",
"onboarded_at": "2024-03-15T12:00:00Z",
"onboarding_steps": "Step 1: Account Setup, Step 2: Review Terms"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
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
.
Was this page helpful?
curl --request GET \
--url https://marketplace-api.fabric.inc/v1/retailers/{retailer_id}/connections/t-and-c-status/ \
--header 'Authorization: Bearer <token>'
{
"count": 3,
"next": "https://api.example.org/demo/accounts/?page=2",
"previous": "https://api.example.org/demo/accounts/?page=1",
"results": [
{
"id": 12345,
"brand": "TechCorp",
"retailer": "Retailer X",
"level": "transactions_and_products",
"status": "active",
"suspended_at": "2024-04-01T12:00:00Z",
"created_at": "2024-03-01T12:00:00Z",
"updated_at": "2024-04-01T12:00:00Z",
"shipping_accounts": "FedEx, UPS",
"options": "Gift Wrapping Available",
"attachments": "Attachment1.pdf",
"approved_items_count": "5",
"orders_last_7_days_count": "10",
"proposals_received_last_7_days_count": "3",
"contacts": "contact1@example.com, contact2@example.com",
"memos": "Terms accepted on 2024-03-01.",
"referral": "Referred by John Doe",
"commission_profile": "Standard Commission",
"integration_type": "api",
"onboarding_status": "pending",
"retailer_identifier": "Retailer-01",
"onboarding_target_date": "2024-04-30T00:00:00Z",
"intro_call_date": "2024-03-01T12:00:00Z",
"onboarded_at": "2024-03-15T12:00:00Z",
"onboarding_steps": "Step 1: Account Setup, Step 2: Review Terms"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.