Product Create
https://paydoux.com/product/save
Body
Name
Type
Description
name
string
Product Name
description
string
Product Description
amount
decimal
Product Amount
status
string | ACTIVE | DISABLED
Product Status
period_type
string | FIXED | RECURRING
Period Type
Response
{
"messages": "Product saved",
"data": true
}Validation Error
{
"status": 400,
"error": 400,
"messages": {
"name": "The name field is required.",
}
}Product Already Exists
{
"status": 409,
"error": 409,
"messages": {
"error": "AP-2 Product already exists"
}
}Last updated