REST interface to Avalara's enterprise tax service, AvaTax.
Returns full list of communications transaction/service type pairs which are accepted in communication tax calculation requests.
1curl 'https://sandbox-rest.avatax.com/api/v2/definitions/communications/tspairs' \ 2-H 'X-Avalara-Client: {X-Avalara-Client}' \ 3-H 'Authorization: Basic <Base64-encoded credentials>' \ 4-H 'Content-Type: application/json'
1{ 2 "@recordsetCount": "", 3 "value": [ 4 { 5 "transactionTypeId": 13, 6 "serviceTypeId": 6, 7 "AvaTax.Communications.TransactionType": "Cellular", 8 "AvaTax.Communications.ServiceType": "Access Charge", 9 "description": "Basic monthly flat-rate charge for cellular/wireless service.", 10 "requiredParameters": [ 11 "AvaTax.Communications.Charge", 12 "AvaTax.Communications.Minutes" 13 ] 14 } 15 ], 16 "@nextLink": "", 17 "pageKey": "" 18}