Payland API v2
    • API Response Codes and Messages
    • Credit Card Info & Test Cards
    • Withdraw Info
    • Deposit
      • Create Deposit (Bank Transfer)
        POST
      • Create Deposit (Credit Card)
        POST
      • Create Deposit (Crypto)
        POST
      • Check Deposit Status
        GET
    • Withdraw
      • Create Withdraw (Bank Transfer)
        POST
      • Check Withdrawal Status
        GET
    • Callback
      • Callback Request
        POST

    Credit Card Info & Test Cards

    Payment Types#

    Two different payment_type values are supported:
    three_d_secure
    redirect
    gcash
    maya

    1. three_d_secure#

    When using the three_d_secure payment type, credit card information must be provided in the request.
    Required fields:
    card_holder
    card_number
    exp_month
    exp_year
    cvv
    The payment will be processed through a 3D Secure authentication flow after the card details are submitted.

    2. redirect#

    When using the redirect payment type, card details are not sent in the API request.
    Instead, the user is redirected to a payment page where the card information is collected securely on our side.

    3. gcash#

    When using the gcash payment type:
    This method is only available when currency is set to PHP.
    Card details are not required in the request.
    The API response will return a redirect URL, similar to the redirect payment type.
    The user must be redirected to this URL to complete the payment via GCash.

    4. maya#

    When using the maya payment type:
    This method is only available when currency is set to PHP.
    Card details are not required in the request.
    The API response will return a redirect URL, similar to the redirect payment type.
    The user must open this URL to complete the payment via Maya.

    Test Cards#

    You can use the following cards in the test environment.

    Approved#

    {
      "name": "John Doe",
      "number": "4012888888881881",
      "expiration": "10/27",
      "cvv": "279"
    }

    Rejected#

    {
      "name": "John Doe",
      "number": "4111111111111111",
      "expiration": "10/27",
      "cvv": "279"
    }
    Modified at 2026-04-21 20:36:56
    Previous
    API Response Codes and Messages
    Next
    Withdraw Info
    Built with