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

    Requests Validations

    Request Validations#

    Header Authentication#

    All requests to our API must include proper header authentication to ensure security and access control. The required headers are:
    x-api-key: Your unique API key.
    x-api-secret: The corresponding API secret.
    Failure to include these headers or providing invalid credentials will result in authentication errors. Below are examples of possible error responses:

    Missing User Credentials#

    If either the x-api-key or x-api-secret headers are missing, the API will respond with the following error message:
    {
        "success": false,
        "message": "MISSING_USER_CREDENTIALS"
    }

    Invalid User Credentials#

    If the provided x-api-key or x-api-secret headers do not have the expected format, the API will respond with the following error message:
    {
        "success": false,
        "message": "INVALID_USER_CREDENTIALS"
    }

    User Restriction#

    If, for any reason, your user account has been blocked or restricted, you will receive a similar response specifying the reason for the failure in the "message" field.
    Modified at 2025-01-15 02:33:35
    Previous
    CHANGELOG
    Next
    Hash Validations
    Built with