getTaxProcessor

get

/ccadmin/v1/taxProcessors/{id}

Get Tax Processor. Get a tax processor by ID.

Request

Supported Media Types
  • application/json
Path Parameters
id
Type: string
Required: true
The ID of the tax processor to get.
Query Parameters
type
Type: string
Required: true
Tax processor type.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getTaxProcessor_response
Example application/json

{
    "country":"US",
    "city":"alabama",
    "defaultTaxRate":6,
    "postalCode":"454455",
    "hasPassword":true,
    "type":"avalara",
    "enabled":true,
    "url":"https://development.avalara.net/1.0/tax/get",
    "fallbackEnabled":false,
    "merchantId":"333",
    "addressLine1":"abc",
    "addressLine2":"abc",
    "region":"al",
    "showTaxSummary":true,
    "username":"Karna"
}
Default Response
The error response. The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud: |Error Code|Description| |------------------|------------------| |35003|If there is internal error while getting tax processor.| |35001|If no tax processor found with the given ID.|
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Response Payload returned by endpoint:

{
  "country": "US",
  "city": "alabama",
  "defaultTaxRate": 6,
  "postalCode": "454455",
  "hasPassword": true,
  "type": "avalara",
  "enabled": true,
  "url": "https://development.avalara.net/1.0/tax/get",
  "fallbackEnabled": false,
  "merchantId": "333",
  "addressLine1": "abc",
  "addressLine2": "abc",
  "region": "al",
  "showTaxSummary": true,
  "username": "Karna"
}