Skip to main content

Create a PaymentPrice

This endpoint creates a PaymentPrice.

info

This operation requires authentication.

info

This operation requires admin role.

HTTP Request

POST /api/v2/payments/payment_price/

Parameters

NameInTypeRequiredDescription
bodybodyPaymentPricetrueThe request body (payment_price params)

Example Body Parameters

{
"payment_product": "integer",
"unit_amount": "integer",
"currency": "string",
"active": "boolean"
}

Example Request

const inputBody = '{
"payment_product": "integer",
"unit_amount": "integer",
"currency": "string",
"active": "boolean"
}';
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/payments/payment_price/',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
201CreatedResponse status codePaymentPrice