Set Marketplace Settings

Use this request to update settings for the specified path.

To update the settings for a specified path, use the following URL and the PUT method:

{service_url}/marketplace/v1/marketplaces/settings/{effective_date}/{settings_path}

Here, {service_url} is the URL of the sandbox or production environment, {effective_date} is the date when the settings were created, and {settings_path} is where the setting resides.

Example:

https://sellers-api.sandbox.marketplace.taxamo.com/marketplace/v1/marketplaces/settings/1970-01-01/countries.CA

Details

MethodEndpoint
PUT/marketplace/v1/marketplaces/settings/{effective_date}/{settings_path}

Parameters

ParameterDescription
effective_dateThe date when the settings were created.
settings_pathThe path where the setting resides.

Fields

For more information, see Marketplaces Fields Reference.

Response example

The exact contents of the response are generated dynamically and vary depending on the specified input parameters. The following example shows one setting that may be nested in the response.

{
  "countries": {
    "CA": {
      "is_domestic": true
    }
  }
}

t


Did this page help you?