2-Party Sales Mode
Read about how to configure the service for sales with 2 possibly liable parties.
By default in most implementations, Vertex for Marketplaces facilitates liability determination for 3 parties:
- Seller
- Buyer
- Marketplace
In 2-Party Sales mode, only 2 parties can be liable:
- Seller
- Buyer
This 2-Party Sales mode is used by some customers to facilitate transactions where only one of these 2 parties can be liable. To implement it, you need to configure your sellers' settings.
Where Liability Determination is available, it is used to determine liability. Where it is not available, the liability for physical goods generally defaults to the buyer. This mode is used for transactions where the seller or buyer is liable for sales in that region or country.
This mode applies to both Business-to-Consumer (B2C) and Business-to-Business (B2B) transactions.
Note
If you want to use this mode, you need to contact Vertex to ensure that the delegation check setting is turned off.
Seller Settings
To enable this mode, you need to set the use_markteplace_as_intermediary
to false. If you set this to false
, the 2-party sales logic will be used for applicable sales. These will be transactions where the seller or buyer is liable for sales in that region or country.
The following table lists the seller settings needed for this mode. It can be set for a specific region or country:
Setting | Description |
---|---|
<region>.<country>.use_marketplace_as_intermediary | If you set this to false , the 2-party sales logic will be used for applicable sales by the seller. If you set it to true , 2-party mode is disabled and 3-party logic can apply where applicable. |
The following example shows the settings for the European Union (EU) region:
"regions": {
"EU": {
"taxation": {
"physical": {
"is_seller_located_within_region": true,
"use_marketplace_as_intermediary": false
}
}
},
The following example shows 2-party sales mode enabled for physical goods in Taiwan:
"sellers": [
{
"seller_code": "seller-1",
"settings": {
"countries": {
"TW": {
"taxation": {
"physical": {
"is_physical_tax-enabled": true,
"is_seller_registered": true,
"has_physical_presence": true,
"use_markteplace_as_intermediary":false
}
}
}
}
}
}
]
}
}
Request Examples
The following example shows a virtual seller based in Taiwan, selling a physical good:
{
"transaction": {
"currency_code": "USD",
"buyer_name": "Test buyer",
"ship_to_address": {
"country_code": "TW"
},
"transaction_lines": [
{
"amount": 101,
"quantity": 1,
"custom_id": "line_1",
"ship_from_address": {
"country_code": "PL"
},
"product_class": "P",
"seller_code": "seller-1"
}
],
"sellers": [
{
"seller_code": "seller-1",
"settings": {
"countries": {
"TW": {
"taxation": {
"physical": {
"is_physical_tax-enabled": true,
"is_seller_registered": true,
"has_physical_presence": true,
"use_markteplace_as_intermediary":false
}
}
}
}
}
}
]
}
}
Updated 20 days ago