API for browsing, adding, editing and deleting Rate Plans.
GET /rateplans
Return a list of Rate Plans.
GET /rateplans/{Id}
Return a specific Rate Plan.
POST /rateplans
Create a new Rate Plan.
POST /rateplans/copy
Copy an existing Rate Plan.
PUT /rateplans/{Id}
Update an existing Rate Plan.
DELETE /rateplans/{Id}
Delete the specified Rate Plan.
Looking up a Resource (single objects, lists and tabular data)
Creating a Resource
Copying a Resource
Updating a Resource
Deleting a Resource
Rates API
{
"RatePlanId": 1,
"NewRatePlanName": ""
}
{
"status": "success",
"message": "",
"data": {
"RatePlanId": 5,
"RatePlan": "MNO",
"Description": "Copy of Subscriber"
}
}
This table stores the name and description to be used when grouping collections of rates to rate calls going through the system.
Field Name | Type | Size | Description |
---|---|---|---|
RATE_PLAN_ID | int | 4 | Primary key. |
RATE_PLAN | varchar | 40 | Name of this rate plan. |
DESCRIPTION | varchar | 40 | Description of this rate plan. |