POST api/ConfirmaRegistro
Request Information
URI Parameters
None.
Body Parameters
ParamConfirmaRegistro| Name | Description | Type | Additional information |
|---|---|---|---|
| Correo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Correo": "sample string 1"
}
application/xml, text/xml
Sample:
<ParamConfirmaRegistro xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub_API.Models.Request"> <Correo>sample string 1</Correo> </ParamConfirmaRegistro>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| IsSuccess | boolean |
None. |
|
| UserMessage | string |
None. |
|
| TechMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"IsSuccess": true,
"UserMessage": "sample string 3",
"TechMessage": "sample string 4"
}
application/xml, text/xml
Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub_API.Models.Response"> <Data /> <IsSuccess>true</IsSuccess> <TechMessage>sample string 4</TechMessage> <UserMessage>sample string 3</UserMessage> </BaseResponse>