Vzlaonlineservices API V3
  1. DIGITEL
Vzlaonlineservices API V3
  • INTRODUCTION
  • CHANGELOG
  • Requests Validations
  • Hash Validations
  • Other Validations
  • Operator Validation
  • Webhook Integration
  • Webhook Notification Example
  • MOVISTAR
    • /send
      POST
    • /landline
      POST
    • /lookup
      POST
    • /pay (POSTPAID)
      POST
  • DIGITEL
    • /lookup
      POST
    • /send
      POST
    • /pay (POSTPAID)
      POST
  • MOVILNET
    • /send
      POST
  • SIMPLE TV
    • /send
      POST
    • /lookup
      POST
  • /me
    GET
  • /operators
    GET
  • /send
    POST
  • /products
    GET
  • /transaction-status/{hash}
    GET
  1. DIGITEL

/pay (POSTPAID)

POST
/digitel/pay
Asynchronous

Request Types#

This endpoint supports asynchronous requests.

💡 Important:#

Before making a payment request, you must perform a lookup to retrieve the exact amount owed. This operator does not accept partial payments; the payment must match the total outstanding amount.

Request

Header Params

Body Params application/json

Example
{
    "destination": "+584126449434",
    "amount": 364.67,
    "hash": "2deb110b57bfac9d72c14d4ed9621146",
    "useWebhook": true,
    "webhookUrl": "https://yourdomain.com/webhook"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/digitel/pay' \
--header 'x-api-key: {{apiKey}}' \
--header 'x-api-secret: {{apiSecret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "destination": "+584126449434",
    "amount": 364.67,
    "hash": "2deb110b57bfac9d72c14d4ed9621146",
    "useWebhook": true,
    "webhookUrl": "https://yourdomain.com/webhook"
}'

Responses

🟢200ASYNC
application/json
Body

Example
{
    "success": true,
    "message": "OK",
    "data": {
        "destination": "167747625",
        "amount": 3215.22,
        "hash": "2deb110b57bfac9d72c14d4ed9621200",
        "transactionId": "69b4cea596cdad8fe99a7be0e53610c0",
        "operator": "DIGITEL POSTPAID",
        "operatorReference": null,
        "status": "PENDING",
        "useWebhook": true,
        "webhookUrl": "https://yourdomain.com/webhook"
    }
}
Modified at 2025-02-11 14:41:50
Previous
/send
Next
/send
Built with