# MD for: https://www.mercadopago.com.co/developers/en/docs/checkout-pro/additional-settings/iva-colombia.md \# VAT considerations in Colombia VAT (\*\*Value Added Tax\*\*) is a tax burden that applies to the sale of products or the provision of services within Colombian territory. Some products and services are excluded from VAT and others have reduced rates. Currently, the \*\*general rate for this tax is 19%\*\*. ## Taxes in online payments To process VAT correctly, you can send the net amount (\`unit\_price\`) and VAT (\`taxes\`) when making the charge through the API. > RED\_MESSAGE > > The \`taxes.value\` parameter must be completed only with a integer numeric value. Never send the percent symbol or special characters. Below we show you how to send the data: | Field | Type | Description | Remarks | |---|:---:|---|---| | \`items\` | Array | List of products or services to charge | - | | \`items.title\` | String | Title of the product or service | - | | \`items.quantity\` | Integer | Number of units | - | | \`items.unit\_price\` | Float | Unit price of the product without VAT | - | | \`items.currency\_id\` | String | Currency identifier (COP for Colombia) | - | | \`taxes\` | Array | List of applicable taxes | If no value is sent, a 19% reduction on the total transaction amount will be applied by default, corresponding to the general VAT. | | \`taxes.type\` | String | Tax type (IVA) | - | | \`taxes.value\` | Integer | Tax amount in absolute values | Must be an integer amount; do not use decimals or special characters. For VAT-exempt products, set it with a value of 0\. | \`\`\`curl curl -X POST \\ -H 'accept: application/json' \\ -H 'content-type: application/json' \\ -H 'Authorization: Bearer ACCESS\_TOKEN' \\ 'https://api.mercadopago.com/v1/payments' \\ -d '{ "items": \[ { "title": "Title of what you are paying for", "quantity": 1, "unit\_price": 10000, "currency\_id": "COP" } \], "taxes": \[ { "type": "IVA", "value": 500 } \], "payer": { "email": "test\_user\_co@testuser.com" }, "back\_urls": { "success": "https://www.your-site.com/success", "failure": "https://www.your-site.com/failure", "pending": "https://www.your-site.com/pending" }, "auto\_return": "approved" }' \`\`\` > WARNING > > Do not use local domains in the \`back\_urls\` value, such as 'localhost/' or '127.0.0.1' with or without a specified port. We recommend using a server with a named domain (DNS) or development IPs to be able to return to the site after payment. Otherwise, the "Something went wrong" message will appear when the purchase process is completed.