POST api/easywallet/InsertNewWalletAccount?sign={sign}&UserID={UserID}&UserCreate={UserCreate}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
sign | string |
Required |
|
UserID | string |
Required |
|
UserCreate | string |
Required |
Body Parameters
None.
Response Information
Resource Description
WalletUserResponseName | Description | Type | Additional information |
---|---|---|---|
WalletID | string |
None. |
|
Status | integer |
Required |
|
Code | integer |
Required |
|
Message | string |
Required |
Response Formats
application/json, text/json
Sample:
{ "WalletID": "sample string 1", "Status": 2, "Code": 3, "Message": "sample string 4" }
application/xml, text/xml
Sample:
<WalletUserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Easybook.Api.BusinessLogic.ApiLogic.BusinessObjects.Wallet"> <Code xmlns="http://schemas.datacontract.org/2004/07/Easybook.Api.BusinessLogic.ApiLogic.BusinessObjects">3</Code> <Message xmlns="http://schemas.datacontract.org/2004/07/Easybook.Api.BusinessLogic.ApiLogic.BusinessObjects">sample string 4</Message> <Status xmlns="http://schemas.datacontract.org/2004/07/Easybook.Api.BusinessLogic.ApiLogic.BusinessObjects">2</Status> <WalletID>sample string 1</WalletID> </WalletUserResponse>