Create Invoice

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

POSThttps://tokoapisnap-stg.netzme.com/api/{version}/invoice/create

ParameterData TypeDescription

custIdMerchant

String

User ID

partnerReferenceNo

String

API request identifier from the user's system, unique for each request

amount

Object

value

String

Value of Amount

currency

String

Currency of Amount

amountDetail

Object

basicAmount

Object

value

String

Value of basicAmount

currency

String

Currency of basicAmount

shippingAmount

Object

value

String

Value of shippingAmount

currency

String

Currency of shippingAmount

commissionPercentage

Int

Percentage of commission

additionalInfo

Object

email

String

Customer email

notes

String

Invoice note

description

String

Order description

phoneNumber

String

Customer phone number

imageUrl

String

url image

fullname

String

Customer fullname

{
    "custIdMerchant": "M_TB1NMLig",
    "partnerReferenceNo": "testing20210409144959687",
    "amount": {
        "value": "50000.00",
        "currency": "IDR"
    },
    "amountDetail": {
        "basicAmount": {
            "value": "50000.00",
            "currency": "IDR"
        },
        "shippingAmount": {
            "value": "9000.00",
            "currency": "IDR"
        }
    },
    "commissionPercentage": 0,
    "additionalInfo": {
        "email": "testabc@gmail.com",
        "notes": "desc",
        "description": "description",
        "phoneNumber": "+62813293333333",
        "imageUrl": "",
        "fullname": "Tester 2"
    }
}

Last updated