Show Settings

Use this request to view a specified setting.

Use this request to view the setting for a specific setting.

To create the seller, use a POST method and the following URL:

{service_URI}/marketplace/v1/marketplaces/settings/{start_date}/{settings_path}

where:

  • {service_URI} is the service's URI.
  • {start_date} is the date when the setting was started. For example 1970-01-01.
  • {settings_path} the path to the specific setting. For example countries.FR is the path to the following setting:
{
  "countries": {
    "FR": {
      "is_domestic": true
    }
  }
}

For example:

$ curl \
    -H "x-marketplace-token: ms_{ACCESS_TOKEN}" \
    -H "Content-Type: application/json" \
    -X POST \
    --data '{JSON}' \
    https://sellers-api.sandbox.marketplace.taxamo.com/marketplace/v1/marketplaces/settings/1970-01-01/countries.FR

where:

  • {ACCESS_TOKEN} is your access token used for authentication.
  • {JSON} is the body of the request where you specify the seller's details.

Details

API Component TypeAPI Component
Endpoint/marketplace/v1/sellers
MethodPOST
API Reference DocumentShow settings

Input Parameters

FieldDescription
start_dateSpecify the date when the setting was started. For example 1970-01-01.
settings_pathSpecify the path to the specific setting. For example countries.FR.

Response

The exact contents of the JSON response is dynamically generated and differs depending on the specified input parameters. Here is an example of one setting that you may see nested in the JSON response:

{
  "countries": {
    "FR": {
      "is_domestic": true
    }
  }
}