Retrieve a tax service tracking log

Request

Retrieves a tax service tracking log with a specified ID.

Security
SecretApiKey or JWT
Path
idstring, <= 50 characters^[@~\-\.\w]+$required

ID of the resource.

curl -i -X GET \
  'https://www.rebilly.com/_mock/catalog/all/tracking/taxes/{id}' \
  -H 'REB-APIKEY: YOUR_API_KEY_HERE'

Responses

Tax log retrieved.

Bodyapplication/json
idstring, <= 50 characters(ResourceId)

Unique resource ID.

Example:"4f6cf35x-2c4y-483z-a0a9-158621f77a21"
statusinteger

Response code of the HTTP request.

durationinteger

Duration of the HTTP request in milliseconds.

initiatedTimestring, (date-time)(ServerTimestamp)read-only

Date and time the HTTP request is initiated.

urlstring

URL of the tax service endpoint.

methodstring

Method of the HTTP request.

Example:"POST"
requeststring

Request body of the HTTP request.

responsestring

Response body of the HTTP request.

requestHeadersobject(HttpHeaders)

HTTP headers.

Example:
{ "Content-Type": "application/json", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" }
responseHeadersobject(HttpHeaders)

HTTP headers.

Example:
{ "Content-Type": "application/json", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" }
entityIdstring

ID of the resource associated with the tax service request.

organizationIdstring, <= 50 characters(OrganizationId)

Unique organization identifier. An organization is an entity that represents a company. For more information, see Obtain an organization ID.

Example:"org_0YVDM8RC7GDADADSBSMW124JA8"
taxServicestring

Name of the tax service used for the request.

Enum:"taxjar""avalara"
taxServiceCredentialSourcestring

Source of the credentials that are used to send or retrieve data.

Enum:"default""merchant"
customerIdstring

ID of the customer associated with the tax service request.

Response
{ "id": "4f6cf35x-2c4y-483z-a0a9-158621f77a21", "status": 0, "duration": 0, "initiatedTime": "2019-08-24T14:15:22Z", "url": "string", "method": "POST", "request": "string", "response": "string", "requestHeaders": { "Content-Type": "application/json", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" }, "responseHeaders": { "Content-Type": "application/json", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" }, "entityId": "string", "organizationId": "org_0YVDM8RC7GDADADSBSMW124JA8", "taxService": "taxjar", "taxServiceCredentialSource": "default", "customerId": "string", "_links": [ {} ] }