POST api/Login/GetPhoneNumber
Request Information
URI Parameters
None.
Body Parameters
GetPhoneNumberModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| HasAgreed | boolean |
None. |
|
| AgreementVersion | string |
None. |
|
| AgreeDate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"HasAgreed": true,
"AgreementVersion": "sample string 3",
"AgreeDate": "sample string 4"
}
application/xml, text/xml
Sample:
<GetPhoneNumberModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WORK.Api.Models"> <AgreeDate>sample string 4</AgreeDate> <AgreementVersion>sample string 3</AgreementVersion> <Code>sample string 1</Code> <HasAgreed>true</HasAgreed> </GetPhoneNumberModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultDataModel| Name | Description | Type | Additional information |
|---|---|---|---|
| State | string |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"State": "sample string 1",
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResultDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WORK.Api.Models"> <Msg>sample string 2</Msg> <State>sample string 1</State> </ResultDataModel>