POST api/v1/payv1/GetWithdrawTypeList

Request Information

URI Parameters

None.

Body Parameters

WithdrawTypeParam
NameDescriptionTypeAdditional information
CountryCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CountryCode": "sample string 1"
}

application/xml, text/xml

Sample:
<WithdrawTypeParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DDO.AppApi.Models.v1.Params">
  <CountryCode>sample string 1</CountryCode>
</WithdrawTypeParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of WithdrawType
NameDescriptionTypeAdditional information
WithdrawBaseTypeId

integer

None.

WithdrawTypeName

string

None.

ShowName

string

None.

Sort

integer

None.

IsEnabled

boolean

None.

CountryCode

string

None.

Id

integer

None.

Response Formats

application/json

Sample:

Sample not available.

application/xml

Sample:
<ArrayOfWithdrawType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <WithdrawType>
    <Id>7</Id>
    <WithdrawBaseTypeId>1</WithdrawBaseTypeId>
    <WithdrawTypeName>sample string 2</WithdrawTypeName>
    <ShowName>sample string 3</ShowName>
    <Sort>4</Sort>
    <IsEnabled>true</IsEnabled>
    <CountryCode>sample string 6</CountryCode>
  </WithdrawType>
  <WithdrawType>
    <Id>7</Id>
    <WithdrawBaseTypeId>1</WithdrawBaseTypeId>
    <WithdrawTypeName>sample string 2</WithdrawTypeName>
    <ShowName>sample string 3</ShowName>
    <Sort>4</Sort>
    <IsEnabled>true</IsEnabled>
    <CountryCode>sample string 6</CountryCode>
  </WithdrawType>
</ArrayOfWithdrawType>

text/json

Sample:
[
  {
    "WithdrawBaseTypeId": 1,
    "WithdrawTypeName": "sample string 2",
    "ShowName": "sample string 3",
    "Sort": 4,
    "IsEnabled": true,
    "CountryCode": "sample string 6",
    "Id": 7
  },
  {
    "WithdrawBaseTypeId": 1,
    "WithdrawTypeName": "sample string 2",
    "ShowName": "sample string 3",
    "Sort": 4,
    "IsEnabled": true,
    "CountryCode": "sample string 6",
    "Id": 7
  }
]

text/xml

Sample:
<ArrayOfWithdrawType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Domain.Entity.Finance">
  <WithdrawType>
    <Id xmlns="http://schemas.datacontract.org/2004/07/Smart.Infrastructure.Domain.Base">7</Id>
    <CountryCode>sample string 6</CountryCode>
    <IsEnabled>true</IsEnabled>
    <ShowName>sample string 3</ShowName>
    <Sort>4</Sort>
    <WithdrawBaseTypeId>1</WithdrawBaseTypeId>
    <WithdrawTypeName>sample string 2</WithdrawTypeName>
  </WithdrawType>
  <WithdrawType>
    <Id xmlns="http://schemas.datacontract.org/2004/07/Smart.Infrastructure.Domain.Base">7</Id>
    <CountryCode>sample string 6</CountryCode>
    <IsEnabled>true</IsEnabled>
    <ShowName>sample string 3</ShowName>
    <Sort>4</Sort>
    <WithdrawBaseTypeId>1</WithdrawBaseTypeId>
    <WithdrawTypeName>sample string 2</WithdrawTypeName>
  </WithdrawType>
</ArrayOfWithdrawType>