POST api/CDVWeb/NextPeriod/Cutoff?OFC_ID={OFC_ID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| OFC_ID | string |
Required |
Body Parameters
CutoffModel| Name | Description | Type | Additional information |
|---|---|---|---|
| userID | string |
None. |
|
| currentPeriod | string |
None. |
|
| newPeriod | string |
None. |
|
| lastVpnSeries | integer |
None. |
|
| lastCvNoSeries | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"userID": "sample string 1",
"currentPeriod": "sample string 2",
"newPeriod": "sample string 3",
"lastVpnSeries": 4,
"lastCvNoSeries": 5
}
application/xml, text/xml
Sample:
<CutoffModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MTServiceAPI.Models.ASCDV"> <currentPeriod>sample string 2</currentPeriod> <lastCvNoSeries>5</lastCvNoSeries> <lastVpnSeries>4</lastVpnSeries> <newPeriod>sample string 3</newPeriod> <userID>sample string 1</userID> </CutoffModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | Status |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 0,
"Description": "sample string 1"
}
application/xml, text/xml
Sample:
<RequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MTServiceAPI.Models"> <Description>sample string 1</Description> <Status>Ok</Status> </RequestModel>