Skip to main content

Create a PaymentProduct

This endpoint creates a PaymentProduct.

info

This operation requires authentication.

info

This operation requires admin role.

HTTP Request

POST /api/v2/payments/payment_product/

Parameters

NameInTypeRequiredDescription
bodybodyPaymentProducttrueThe request body (payment_product params)

Example Body Parameters

{
"name": "string",
"description": "string",
"active": "boolean"
}

Example Request

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

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

Responses

StatusMeaningDescriptionSchema
201CreatedResponse status codePaymentProduct