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
Name | In | Type | Required | Description |
---|---|---|---|---|
body | body | PaymentPrice | true | The request body (payment_price params) |
Example Body Parameters
- JSON
{
"payment_product": "integer",
"unit_amount": "integer",
"currency": "string",
"active": "boolean"
}
Example Request
- JavaScript
- Bash
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);
});
# You can also use wget
curl -X POST /api/v2/payments/payment_price/ \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: application/json'
-H 'Authorization: Bearer {access_token}'
--DATA '{body}'
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
201 | Created | Response status code | PaymentPrice |