POST api/RegUsers?otp={otp}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
otp | integer |
Required |
Body Parameters
RegUserName | Description | Type | Additional information |
---|---|---|---|
UserName | string |
None. |
|
UserPhone | string |
None. |
|
Date | date |
None. |
|
Serial | string |
None. |
|
UserStatus | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserName": "sample string 1", "UserPhone": "sample string 2", "Date": "2025-04-28T02:25:38.213662-07:00", "Serial": "sample string 4", "UserStatus": 5 }
text/html
Sample:
{"UserName":"sample string 1","UserPhone":"sample string 2","Date":"2025-04-28T02:25:38.213662-07:00","Serial":"sample string 4","UserStatus":5}
application/xml, text/xml
Sample:
<RegUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNXAPItoFlutter.Models"> <Date>2025-04-28T02:25:38.213662-07:00</Date> <Serial>sample string 4</Serial> <UserName>sample string 1</UserName> <UserPhone>sample string 2</UserPhone> <UserStatus>5</UserStatus> </RegUser>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json, text/html
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>