v1
latestOpenAPI 3.1.02026-07-263436159.3 KBSubscriptionProduct
Create a subscription product
Creates a reusable subscription product template that can be used to create multiple subscriptions with the same configuration.
post/v1/subscription-products
Request body
Example request
{
"channel": "PIX",
"authorizationType": "BACKGROUND",
"frequency": "MONTHLY",
"retryPolicy": {
"type": "PIX_SPECIFIC",
"maxRetries": 5,
"retryIntervalDays": 2
},
"amount": {
"type": "FIXED",
"fixedValue": 10000,
"minValue": 5000,
"maxValue": 50000,
"currency": "BRL"
}
}Response
Product created successfully
Example response
{
"data": {
"retryPolicy": {
"type": "PIX_SPECIFIC",
"maxRetries": 5,
"retryIntervalDays": 2
},
"amount": {
"type": "FIXED",
"fixedValue": 10000,
"minValue": 5000,
"maxValue": 50000,
"currency": "BRL"
}
}
}