Vzlaonlineservices API V3
    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

    Webhook Notification Example

    Webhook Notification Structure#

    When you receive a webhook notification, it will contain the following information in the request body:
    HTTP Method: POST
    Content-Type: application/json
    {
        "hash": "2deb110b57bfac9d72c14d4ed9622233",
        "transactionId": "226a3e3aebfc859cb407c9eddf2e2679",
        "destination": "+584146783743",
        "amount": "20.00",
        "price": "1.67",
        "status": "SENT",
        "hasError": false,
        "operatorReference": "0000266256",
        "sentAt": "2024-02-05T03:45:10.000Z",
        "useWebhook": true,
        "webhookUrl": "http://127.0.0.1:3503/v2.1/webhook"
    }
    
    Upon receiving this information, you should take appropriate actions on your end. You can track the transaction using either the "hash" (the same one you provided when making the request) or the "transactionId," which is our unique identifier for this transaction.
    Modified at 2025-01-15 02:33:35
    Previous
    Webhook Integration
    Next
    /send
    Built with