POST api/Account?password={password}&email={email}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| password | string |
Required |
|
| string |
Required |
Body Parameters
None.
Response Information
Resource Description
User| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| credits | decimal number |
None. |
|
| Name | string |
None. |
|
| string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserID": 1,
"credits": 2.1,
"Name": "sample string 3",
"Email": "sample string 4"
}
application/xml, text/xml
Sample:
<User xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMS.BUSINESS.LAYER"> <Email>sample string 4</Email> <Name>sample string 3</Name> <UserID>1</UserID> <credits>2.1</credits> </User>