POST api/LPA/AddManualRegNo
Request Information
URI Parameters
None.
Body Parameters
LPAManualRegNoReqMDL| Name | Description | Type | Additional information |
|---|---|---|---|
| RegNo | string |
None. |
|
| CompanyId | integer |
None. |
|
| UserId | integer |
None. |
|
| SubProcessId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"RegNo": "sample string 1",
"CompanyId": 2,
"UserId": 3,
"SubProcessId": 4
}
application/xml, text/xml
Sample:
<LPAManualRegNoReqMDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.WebAPIMDL.LPA"> <CompanyId>2</CompanyId> <RegNo>sample string 1</RegNo> <SubProcessId>4</SubProcessId> <UserId>3</UserId> </LPAManualRegNoReqMDL>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RegStatusMDL| Name | Description | Type | Additional information |
|---|---|---|---|
| result | boolean |
None. |
|
| status | string |
None. |
|
| message | string |
None. |
|
| stepNo | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": true,
"status": "sample string 2",
"message": "sample string 3",
"stepNo": 4
}
application/xml, text/xml
Sample:
<RegStatusMDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.WebAPIMDL.LPA"> <message>sample string 3</message> <result>true</result> <status>sample string 2</status> <stepNo>4</stepNo> </RegStatusMDL>