Create Invoice Transaction Topup Deposit

The available versions for this api are v1.0 and v2.0.

POST https://tokoapisnap-stg.netzme.com/api/{version}/invoice/create-transaction

ParameterData TypeDescription

custIdMerchant

String

partnerReferenceNo

amount

Object

value

String

currency

String

amountDetail

Object

basicAmount

Object

value

String

currency

String

shippingAmount

Object

value

String

currency

String

payMethod

String

commissionPercentage

String

expireInSecond

String

feeType

String

additionalInfo

Object

apiSource

String

email

String

notes

String

description

String

phoneNumber

String

imageUrl

String

fullname

String

Request Body

{
    "custIdMerchant": "M_TB1NMLig",
    "partnerReferenceNo": "testing20210409144959687",
    "amount": {
        "value": "50000.00",
        "currency": "IDR"
    },
    "amountDetail": {
        "basicAmount": {
            "value": "50000.00",
            "currency": "IDR"
        },
        "shippingAmount": {
            "value": "0.00",
            "currency": "IDR"
        }
    },
    "payMethod": "BANK_TRANSFER",
    "commissionPercentage": "0",
    "expireInSecond": "600",
    "feeType": "on_seller",
    "additionalInfo": {
        "apiSource": "topup_deposit",
        "email": "testabc@gmail.com",
        "notes": "desc",
        "description": "description",
        "phoneNumber": "+62813293333333",
        "imageUrl": "a",
        "fullname": "Tester"
    }
}

Last updated