Vzlaonlineservices API V3
  1. MOVISTAR
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. MOVISTAR

/pay (POSTPAID)

POST
/movistar/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": "2756389066",
    "amount": 60.49,
    "hash": "2deb110b57bfac2222c14d4ed9621191",
    "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 '/movistar/pay' \
--header 'x-api-key: {{apiKey}}' \
--header 'x-api-secret: {{apiSecret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "destination": "2756389066",
    "amount": 60.49,
    "hash": "2deb110b57bfac2222c14d4ed9621191",
    "useWebhook": true,
    "webhookUrl": "https://yourdomain.com/webhook"
}'

Responses

🟢200ASYNC
application/json
Body

Example
{
    "success": true,
    "message": "OK",
    "requestId": "64598519-833b-43e7-8e52-51ed9165d7df",
    "data": {
        "destination": "2756389066",
        "amount": 60.49,
        "hash": "2deb110b57bfac2222c14d4ed9621191",
        "transactionId": "76dac2e3-8928-495f-ad5b-0a54711a9832",
        "operator": "MOVISTAR POSPAGO",
        "operatorReference": null,
        "status": "PENDING",
        "useWebhook": true,
        "webhookUrl": "https://yourdomain.com/webhook"
    }
}
Modified at 2025-02-11 14:38:45
Previous
/lookup
Next
/lookup
Built with