POST api/members/pinregistration
Request Information
URI Parameters
None.
Body Parameters
LoginPinObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Pin | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Pin": 1
}
text/html
Sample:
{"Pin":1}
application/xml, text/xml
Sample:
<LoginPinObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MembershipAPI"> <Pin>1</Pin> </LoginPinObject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
M_PreLoginApp| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| MemberID | integer |
None. |
|
| TempGuID | string |
None. |
|
| OTP | integer |
None. |
|
| ExpiresOn | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"MemberID": 1,
"TempGuID": "sample string 2",
"OTP": 1,
"ExpiresOn": "2025-12-09T19:23:46.8833754-08:00"
}
text/html
Sample:
{"ID":1,"MemberID":1,"TempGuID":"sample string 2","OTP":1,"ExpiresOn":"2025-12-09T19:23:46.8833754-08:00"}
application/xml, text/xml
Sample:
<M_PreLoginApp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MembershipAPI.Models"> <ExpiresOn>2025-12-09T19:23:46.8833754-08:00</ExpiresOn> <ID>1</ID> <MemberID>1</MemberID> <OTP>1</OTP> <TempGuID>sample string 2</TempGuID> </M_PreLoginApp>