Inquiry Static VA

This API is used to inquiry data of static VA transactions for route payment.

URL Path

Method

POST

Response Parameter

Response parameters are parameters that will be delivered by Faspay system in response to the request that have been sent by the merchant system. If no parameters appropriate/value are incorrect, the transaction will be rejected in the system Faspay.

Parameter
Data Type
M/O/C
Description

response

Varchar

M

Response Description

va_number

String (ISO4217) (16,2)

M

Virtual Account number

amount

Numeric (15)

C

Item Price

cust_name

Alphanumeric (128)

M

Customer Name

response_code

Numeric (2)

M

route

Object

O

owner

Alphanumeric (32)

O

Registered partner id that owns/generates the transaction.

Notes:

  • 1 transaction only can contain 1 owner.

  • If null, then the remaining transaction amount will belong to the merchant’s Sendme balance.

partnerId

Alphanumeric (32)

O

Merchant partner id number.

partnerAmount

Numeric (15)

C

Disbursement amount to partner.

Sample Response

{
    "response": "VA Static Response",
    "va_number": "8641162021000007",
    "amount": "20000",
    "cust_name": "suyanto",
    "response_code": "00",
    "route":
    [
        {
            "owner": "3650800125"
        },
        {
            "partner_id": "3650800123",
            "partner_amount": "10000"
        },
        {
            "partner_id": "3650800124",
            "partner_amount": "10000"
        }
    ]
}

Last updated