Retrieve the list of subscription startup, supports pagination, with a maximum of 100 records per page.
POST/api/v1/subscriptionStartup/list| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | No | ID |
| name | string | No | Name |
| remark | string | No | Remark |
| renewal_status | int | No | Auto-Renewal: 0 No; 1 Yes |
| sort_by | string | No | Sorting field. Options: name (Name); created_at (Create Time); expired_at (Expiry Time) |
| order | string | No | Sorting order. Use sort_by to specify the sort field. Use asc for ascending order or desc for descending. |
| page | int | No | Request page number, defaults to the first page if not provided |
| pagesize | int | No | Number of items per page, defaults to 10 items/page if not provided |
{
"page": 1,
"pagesize": 10,
"sort_by": "created_at",
"order": "desc",
"id": "xxx",
"name": "xxx",
"renewal_status": 0,
"remark": "xxx",
}
{
"code": 200,
"data": {
"list": [
{
"id": "xx", // ID
"name": "xx", // Name
"cpu": "xx", // CPUs
"ram": "4G", // RAM
"rom": "32G", // ROM
"renewal_status": 0, // Auto-Renewal
"remark": "xx", // Remark
"expired_at": "1770108845", // Expiry time
"created_at": "1759136045", // Create time
"need_renewal": false // Is about to expire
}
],
"page": 1,
"pagesize": 10,
"total": 1,
"total_page": 1
},
"message": "Success"
}