Vertex has announced that they are dropping support for their V1 API endpoints as of July 31, 2024: https://tax-calc-api-v1.vertexcloud.com/
While Vertex seems to mention that the endpoints will not stop working, they are saying that they are dropping support for the V1 endpoints.
VTXCLOUD has been updated to v6.00 to take into account the changes that are needed for this. The major changes are:
The examples in the QRPGLESRC source member have been updated to show the changes made.
Right now we are working with a couple of customers to see if there are any other requirements or issues that may arise during this upgrade.
Do you have working postman collection to get tax value? i have read whole document but i unable to get tax.
Now i am calling https://calcconnect.vertexsmb.com/vertex-ws/v2/supplies api to get tax amount but it's thowring me
Here's an example:
POST /vertex-ws/v2/supplies HTTP/1.1
Accept: application/json
Host: calcconnect.vertexsmb.com
Content-Type: application/json
Content-Length: 2127
Authorization: Bearer [token]
{
"saleMessageType": "QUOTATION",
"seller": {
"company": "COMPANY"
},
"lineItems": [
{
"seller": {
"physicalOrigin": {
"taxAreaId": 391013000
}
},
"customer": {
"customerCode": {
"classCode": "custclass",
"value": "cust"
},
"destination": {
"streetAddress1": "2301 Renaissance Blvd",
"streetAddress2": "Suite 100",
"city": "King of Prussia",
"mainDivision": "PA",
"postalCode": "19406",
"country": "UNITED STATES"
}
},
"product": {
"productClass": "PRODCLASS",
"value": "PRODCODE"
},
"quantity": {
"value": 10
},
"unitPrice": 10,
"flexibleFields": {
"flexibleCodeFields": [
{
"fieldId": 1,
"value": "FLEXCodeField1"
}
],
"flexibleNumericFields": [
{
"fieldId": 1,
"value": 111
}
],
"flexibleDateFields": [
{
"fieldId": 1,
"value": "2017-12-18"
}
]
},
"lineItemNumber": 1,
"deliveryTerm": "FOB"
},
{
"seller": {
"physicalOrigin": {
"taxAreaId": 391013000
}
},
"customer": {
"customerCode": {
"classCode": "custclass",
"value": "cust"
},
"destination": {
"streetAddress1": "2301 Renaissance Blvd",
"streetAddress2": "Suite 100",
"city": "King of Prussia",
"mainDivision": "PA",
"postalCode": "19406",
"country": "UNITED STATES"
}
},
"product": {
"productClass": "SHIPPINGCLASS",
"value": "SHIPPING"
},
"quantity": {
"value": 1
},
"extendedPrice": 20,
"lineItemNumber": 2
}
],
"documentNumber": "12345",
"documentDate": "2017-12-18",
"transactionType": "SALE"
}