Create Invoice Transaction

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

Merchant ID

partnerReferenceNo

String

GUID

amount

Object

Transaction Amount

value

String

Value amount

currency

String

Currency amount

amountDetail

Object

Detail of amount

basicAmount

Object

value

String

Value amount

currency

String

Currency amount

shippingAmount

Object

Shipping amount

value

String

Value amount

currency

String

Currency amount

PayMethod

String

Fill with "BANK_TRANSFER", "NETZME", "BCA" , "QRIS" , "RETAIL_OUTLET", "OVO" , "NETZME_SEAMLESS", "DANA" or "CREDIT_CARD"

commissionPercentage

Int

Percentage of commision

expireInSecond

String

Expire time

feeType

String

Charge service fee type. Fill with "on_buyer" or "on_seller". Default is "on_seller"

additionalInfo

Object

email

String

Buyer's email

notes

String

Notes

description

String

Description

phoneNumber

String

Buyer's phone number

imageUrl

String

URL your company logo to put on the invoice

fullname

String

Buyer's name. Must be alphabetic

{
    "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": "BCA",
    "commissionPercentage": "0",
    "expireInSecond": "600",
    "feeType": "on_seller",
    "additionalInfo": {
        "email": "testabc@gmail.com",
        "notes": "desc",
        "description": "description",
        "phoneNumber": "+62813293333333",
        "imageUrl": "a",
        "fullname": "Tester"
    }
}

Last updated