Create Recurring Item
Create a recurring plan fee item
application/json
Request Body
- If user has any external reference ID they would like to associate with they can input in this field
- This is name of the recurring product
- This is to set the price of the item. The price will be the billing amount for the recurring order
- Any description to remark about this record
item object required
reference_id string
label string required
price number required
currency string required
description string
Responses
- 200
Response Headers
application/json
Schema
Example (from schema)
Schema
code integer required
message string required
data object required
item object required
id string required
label string
price number required
currency string required
reference_id string
description string
created_at string
updated_at string
deleted_at string nullable
{
"code": 0,
"message": "string",
"data": {
"item": {
"id": "string",
"label": "string",
"price": 0,
"currency": "string",
"reference_id": "string",
"description": "string",
"created_at": "string",
"updated_at": "string",
"deleted_at": "string"
}
}
}
Loading...