Show Seller Settings
To retrieve the information for a specific seller code, use this request.
To retrieve the details for a specific seller code, use a GET method and the following URL:
{service_uri}/marketplace/v1/sellers/{seller_code}/settings/{effective_from}/{settings_path}
where:
{service_uri}is the service's URL.{seller_code}is the ID of the record that you want to retrieve.{effective_from}is the date when the setting was started. For example1970-01-01. See Start and Block Dates for Settings.{settings_path}the path to the specific setting. For examplecountries.FRis the path to the following setting:
{
"countries": {
"FR": {
"is_domestic": true
}
}
}
For example:
$ curl \
-H "x-marketplace-token: ms_{TOKEN}" \
-X GET \
https://sellers-api.sandbox.marketplace.taxamo.com/marketplace/v1/sellers/liz.doe.123
where {TOKEN} is your access token.
Details
| API Component Type | API Component |
|---|---|
| Endpoint | /marketplace/v1/sellers/{seller_code}/settings/{start_date}/{settings_path} |
| Method | GET |
| API Reference Documentation | Show Seller Settings |
Path Parameters
| Parameter | Description |
|---|---|
seller_code | Specify the ID of the record that you want to retrieve. This code is returned by the API when the seller was created. |
start_date | Specify the date when the setting was started. For example 1970-01-01. |
settings_path | Specify the path to the setting. For example countries.FR. |
Updated over 1 year ago
