GET
/
v1
/
retailers
/
{retailer_id}
/
connection-invites
/
{id}
curl --request GET \
  --url https://marketplace-api.fabric.inc/v1/retailers/{retailer_id}/connection-invites/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "id": 12345,
  "company_name": "TechCorp",
  "first_name": "John",
  "last_name": "Doe",
  "email": "johndoe@example.com",
  "memos": "Please review the terms.",
  "status": "pending",
  "retailer": "Retailer X",
  "connection": "TechCorp-Connection",
  "fees": "15.00",
  "commission_profile": "Standard",
  "level": "transactions_and_products",
  "adjustments": "Discount applied",
  "slas": "Next Day Delivery",
  "options": "Gift Wrapping available",
  "shipping_accounts": "FedEx, UPS",
  "onboarding_target_date": "2024-04-30T00:00:00Z",
  "retailer_identifier": "Retailer-01",
  "created_at": "2024-03-01T12:00:00Z",
  "invite_sent_at": "2024-03-01T14:00:00Z"
}

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 connection invite ID used to retrieve a specific connection invite. This ID is generated when a connection invite is sent. Use the /v1/retailers/{retailer_id}/connections/ endpoint to retrieve a list of connection invites and their IDs.

Example:

2002

Response

200 - application/json

Connection invite details

The response is of type object.