Product Types
To retrieve a list of the product types, use a GET method and the following URL:
$ curl https://services.taxamo.com/api/v2/dictionaries/product_types?public_token=public_***********
The Product Types dictionary returns a response with a code field with a string that represents the product:
{
"dictionary": [
{
"code": "string"
}
]
}
For example:
{
"dictionary": [
{
"code": "default"
},
{
"code": "e-service"
},
{
"code": "e-book"
},
{
"code": "e-newspaper"
},
{
"code": "software-download"
}
]
}
Updated over 1 year ago