GET api/easywallet/GetWalletIDByUserID?sign={sign}&pUserID={pUserID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
sign

string

Required

pUserID

string

Required

Body Parameters

None.

Response Information

Resource Description

WalletUserResponse
NameDescriptionTypeAdditional 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>