Create a payment
Body
Required
-
user
string -
subscription
string -
amount
integer -
status
string -
payment_method
string
POST
/payments
curl \
-X POST localhost:8080/payments \
-H "Content-Type: application/json" \
-d '{"user":"string","subscription":"string","amount":42,"status":"string","payment_method":"string"}'
Request example
{
"user": "string",
"subscription": "string",
"amount": 42,
"status": "string",
"payment_method": "string"
}
Request examples
{
"user": "string",
"subscription": "string",
"amount": 42,
"status": "string",
"payment_method": "string"
}