Get a tax service provider

get

https://{FusionAppsHost}/crmRestApi/atcProductCatalog/11.13.18.05/productCatalogReferenceManagement/v1/taxServiceProvider/{id}

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : TaxServiceProviderOracle
Type: object
Title: TaxServiceProviderOracle
The tax service provider name and list of taxcodes supported.
Show Source
Nested Schema : ProjectRef
Type: object
Title: ProjectRef
Project Reference
Show Source
Nested Schema : taxCodes
Type: array
Show Source
Nested Schema : TimePeriod
Type: object
Title: TimePeriod
The period for which the productOffering is valid
Show Source
Nested Schema : TaxCodeGLRelationship
Type: object
Title: TaxCodeGLRelationship
TaxCodeGLRelationship object.
Show Source

400 Response

Your request couldn't be processed because it contains missing or invalid information, such as a validation error on an input field, a missing required value, and so forth.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

401 Response

Your request isn't authorized. The authentication credentials included with this request are missing or invalid.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

404 Response

Your request includes a resource URI that doesn't exist.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

405 Response

HTTP action specified in the request (DELETE, GET, POST, PUT) isn't supported for this request URI.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

500 Response

The server encountered something unexpected that prevented it from completing the request.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source
Back to Top

Examples

The following example shows how to get tax service provider by submitting a GET request with a tax provider Id on the REST resource using cURL.

Command: curl -u username:password -X GET https://{FusionAppsHost}/crmRestApi/atcProductCatalog/11.13.18.05/catalogManagement/v1/taxServiceProvider/Tax_3243

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
    "lastUpdate": "2023-10-04T06:12:31.184Z",
    "lastUpdatedBy": "booth",
    "created": "2023-07-24T05:34:22.000Z",
    "createdBy": "booth",
    "versionState": 0,
    "id": "Avalara",
    "href": "https://{FusionAppsHost}/crmRestApi/atcProductCatalog/11.13.18.05/productCatalogReferenceManagement/v1/taxServiceProvider/Avalara",
    "name": "Avalara",
    "description": "string",
    "@type": "TaxServiceProviderOracle",
    "project": {
        "id": "24A_ProductModel_PSP",
        "name": "24A - DX4C Product Model",
        "href": "https://{FusionAppsHost}/crmRestApi/atcProductCatalog/11.13.18.05/tmf-api/productCatalogManagement/v4/project/24A_ProductModel_PSP",
        "versionState": 0
    },
    "validFor": {
        "startDateTime": "2021-01-01T00:00:00.000Z"
    },
    "taxCodes": [
        {
            "taxCode": "13/6",
            "taxPercentage": 0.1,
            "description": "Cellular/Access Charge"
        },
        {
            "taxCode": "4/11",
            "taxPercentage": 0.1,
            "description": "Non-recurring/Activation"
        },
        {
            "taxCode": "13/622",
            "taxPercentage": 0.1,
            "description": "Cellular/Text Message"
        },
        {
            "taxCode": "13/30",
            "taxPercentage": 0.1,
            "description": "Cellular/Feature Charge"
        },
        {
            "taxCode": "13/33",
            "taxPercentage": 0.1,
            "description": "Cellular/Roaming Charge"
        },
        {
            "taxCode": "10/15",
            "taxPercentage": 0.15,
            "description": "Sales/Product"
        },
        {
            "taxCode": "3/632",
            "taxPercentage": 0.2,
            "description": "Other/Service Contracts"
        },
        {
            "taxCode": "57/609",
            "taxPercentage": 0.12,
            "description": "Digital Goods/Streaming Video"
        },
        {
            "taxCode": "16/35",
            "taxPercentage": 0.12,
            "description": "Cable Television/Premium Service"
        },
        {
            "taxCode": "16/37",
            "taxPercentage": 0.12,
            "description": "Cable Television/Equipment Rental"
        },
        {
            "taxCode": "16/584",
            "taxPercentage": 0.12,
            "description": "Cable Television/Digital Channel Tier"
        },
        {
            "taxCode": "13/49",
            "taxPercentage": 0.12,
            "description": "Cable Television/Digital Channel Tier"
        },
        {
            "taxCode": "57/673",
            "taxPercentage": 0.12,
            "description": "Digital Goods/Streaming Video - On-Net - On Demand"
        },
        {
            "taxCode": "25/62",
            "taxPercentage": 0.12,
            "description": "Timesharing/Information Retrieval"
        }
    ],
    "lifecycleStatus": "In design",
    "version": "1.0"
}
Back to Top