POST api/Account/PaymentRenew?userId={userId}&clientCode={clientCode}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
userId | integer |
Required |
|
clientCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
getPaymentPacksOutputName | Description | Type | Additional information |
---|---|---|---|
PACK_LIST | Collection of PackList |
None. |
|
USER_COUNT | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "PACK_LIST": [ { "PACK_ID": "sample string 1", "PACK_NAME": "sample string 2", "CURRENCY": "sample string 3", "RATE": 4.0, "DAYS": 5, "PACK_SERIAL_NO": 6 }, { "PACK_ID": "sample string 1", "PACK_NAME": "sample string 2", "CURRENCY": "sample string 3", "RATE": 4.0, "DAYS": 5, "PACK_SERIAL_NO": 6 } ], "USER_COUNT": 1 }
application/xml, text/xml
Sample:
<GetPaymentPacksOutput.getPaymentPacksOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BKSource2Api.Models"> <PACK_LIST> <GetPaymentPacksOutput.PackList> <CURRENCY>sample string 3</CURRENCY> <DAYS>5</DAYS> <PACK_ID>sample string 1</PACK_ID> <PACK_NAME>sample string 2</PACK_NAME> <PACK_SERIAL_NO>6</PACK_SERIAL_NO> <RATE>4</RATE> </GetPaymentPacksOutput.PackList> <GetPaymentPacksOutput.PackList> <CURRENCY>sample string 3</CURRENCY> <DAYS>5</DAYS> <PACK_ID>sample string 1</PACK_ID> <PACK_NAME>sample string 2</PACK_NAME> <PACK_SERIAL_NO>6</PACK_SERIAL_NO> <RATE>4</RATE> </GetPaymentPacksOutput.PackList> </PACK_LIST> <USER_COUNT>1</USER_COUNT> </GetPaymentPacksOutput.getPaymentPacksOutput>