Merchant API Endpoints
- Authentication in Dropship
- Carriers
- Compliance Reports
- Connection Invites
- Inventory
- Invoices
- Orders
- Products
- Proposals
- Returns
- Shipments
- Webhooks
Suppliers
- Overview
- Introduction to Integrations
- Getting Started
- Integrations
- Orders
- Products
- Reports
- Settings
Get terms & conditions status
Retrieve whether T&Cs have been accepted for connections.
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.
1001
Response
Total number of records
3
Brand associated with the connection invite
"TechCorp"
Retailer associated with the connection invite
"Retailer X"
Level of the invite (e.g., product only or transactions + products)
transactions_and_products
, products_only
"transactions_and_products"
Current status of the terms and conditions acceptance
active
, suspended
, pending
, onboarding
"active"
Unique identifier for the terms and conditions response
12345
Timestamp when the terms and conditions were suspended
"2024-04-01T12:00:00Z"
Timestamp when the terms and conditions response was created
"2024-03-01T12:00:00Z"
Timestamp when the terms and conditions response was last updated
"2024-04-01T12:00:00Z"
Shipping accounts associated with the connection invite
"FedEx, UPS"
Additional options related to the terms and conditions
"Gift Wrapping Available"
Attachments related to the terms and conditions response
"Attachment1.pdf"
Count of approved items under the terms and conditions
"5"
Count of orders received in the last 7 days under the terms and conditions
"10"
Count of proposals received in the last 7 days
"3"
Contacts associated with the connection invite
"contact1@example.com, contact2@example.com"
Memos associated with the connection invite
"Terms accepted on 2024-03-01."
Referral details if applicable
"Referred by John Doe"
Commission profile associated with the connection invite
"Standard Commission"
Type of integration associated with the connection invite
console
, edi
, api
, storefront
, console-print-labels
, console-register-tracking-numbers
, shopify
, bigcommerce
, shipstation
, woocommerce
"api"
Current onboarding status for the connection invite
pending
, complete
"pending"
Identifier for the retailer
32
"Retailer-01"
Target date for onboarding the connection invite
"2024-04-30T00:00:00Z"
Date of the introductory call for onboarding
"2024-03-01T12:00:00Z"
Timestamp when the invitee was onboarded
"2024-03-15T12:00:00Z"
Steps completed during the onboarding process
"Step 1: Account Setup, Step 2: Review Terms"
Next page (applicable in a paginated response)
"https://api.example.org/demo/accounts/?page=2"
Previous page (applicable in a paginated response)
"https://api.example.org/demo/accounts/?page=1"
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"
}
]
}