POST v1/Rating/SaveMvrReport
Save the MvrReport
Request Information
URI Parameters
None.
Body Parameters
Mvr request
MvrReportSaveRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Filename |
File name |
string |
None. |
| Clientid |
Client ID |
string |
None. |
| Policyid |
Policy ID |
string |
None. |
| HtmlData |
HTML data |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Filename": "sample string 1",
"Clientid": "sample string 2",
"Policyid": "sample string 3",
"HtmlData": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
application/xml, text/xml
Sample:
<MvrReportSaveRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.VerificationObjects"> <Clientid>sample string 2</Clientid> <Filename>sample string 1</Filename> <HtmlData>sample string 4</HtmlData> <Policyid>sample string 3</Policyid> </MvrReportSaveRequest>
Response Information
Resource Description
Action result
ActionResultDTOOfInt32| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | integer |
None. |
|
| CreatedBy | string |
None. |
|
| EntityID | integer |
None. |
|
| RowSource | string |
None. |
|
| PolicyID | integer |
None. |
|
| IsSuccess |
Signifies whether action is successful |
boolean |
None. |
| ErrorCode |
Error code |
string |
None. |
| ErrorMessage |
Error message |
string |
None. |
| InfoMessage |
Information message |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": 1,
"CreatedBy": "sample string 2",
"EntityID": 3,
"RowSource": "sample string 4",
"PolicyID": 5,
"IsSuccess": true,
"ErrorCode": "sample string 7",
"ErrorMessage": "sample string 8",
"InfoMessage": "sample string 9"
}
application/xml, text/xml
Sample:
<ActionResultOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects"> <ErrorCode>sample string 7</ErrorCode> <ErrorMessage>sample string 8</ErrorMessage> <InfoMessage>sample string 9</InfoMessage> <IsSuccess>true</IsSuccess> <CreatedBy>sample string 2</CreatedBy> <EntityID>3</EntityID> <PolicyID>5</PolicyID> <Result>1</Result> <RowSource>sample string 4</RowSource> </ActionResultOfint>