Skip to main content

Add price to Express

x-ms-visibility: "important"

Send a request to price to Express adhoc payment system.

Request Body required

Price data that needs to be added in Express. Default currency=EUR. All other fields are mandatory. Note: price includes VAT with Express.

    priceType string
    currency string
    unitPrice double

    Price including VAT

    vat double nullable
Responses

Returns price id


Schema
    id int64
POST /express/add/price

Authorization

name: codetype: apiKeyin: query

Request

Base URL
https://api.emabler.net/api
apiKey — auth required
code in query
customerKey — auth required
clientId in query
Body required
{
"priceType": "string",
"currency": "string",
"unitPrice": 0,
"vat": 0
}
curl / cURL
curl -L -X POST 'https://api.emabler.net/api/express/add/price' \
-H 'Content-Type: text/plain' \
-H 'Accept: text/plain' \
--data-raw '{
"priceType": "string",
"currency": "string",
"unitPrice": 0,
"vat": 0
}'