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

/lookup

Pending
POST
/digitel/lookup
Synchronous
Use this endpoint before initiating a bill payment for Digitel Postpaid. This endpoint provides essential owner data, including the outstanding amount to be paid. Once you have retrieved the amount, you can proceed to initiate a payment request, specifying the amount in the payment request.

Request Parameters#

destination: This parameter is required and corresponds to the user's contract number. Only the user has access to this information, and without it, it is impossible to process a lookup or make a payment towards the bill.

Request

Header Params

Body Params application/json

Example
{
    "destination": "+584126449434"
}

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/lookup' \
--header 'x-api-key: {{apiKey}}' \
--header 'x-api-secret: {{apiSecret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "destination": "+584126449434"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "message": "OK",
    "requestId": "3d09f237-fdd8-4594-b51e-7af28165e24c",
    "data": {
        "destination": "+584126449434",
        "operator": "DIGITEL POSPAGO",
        "totalBalance": "0.00",
        "price": "0.00",
        "totalBalanceDescription": "0.00 VES",
        "priceDescription": "0.00 USD"
    }
}
Modified at 2025-02-11 14:40:08
Previous
/pay (POSTPAID)
Next
/send
Built with