POST api/v1/transactions/searchpaymentmethodtypes

Request Information

URI Parameters

None.

Body Parameters

BranchPaymentMethodTypeSearch
NameDescriptionTypeAdditional information
Id

integer

None.

CompanyId

integer

None.

Search

string

None.

SettingCode

Collection of string

None.

BranchId

integer

None.

Status

boolean

None.

Skip

integer

None.

Take

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CompanyId": 2,
  "Search": "sample string 3",
  "SettingCode": [
    "sample string 1",
    "sample string 2"
  ],
  "BranchId": 4,
  "Status": true,
  "Skip": 6,
  "Take": 7
}

application/xml, text/xml

Sample:
<BranchPaymentMethodTypeSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Branches.Search">
  <BranchId>4</BranchId>
  <CompanyId>2</CompanyId>
  <Id>1</Id>
  <Search>sample string 3</Search>
  <SettingCode xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </SettingCode>
  <Skip>6</Skip>
  <Status>true</Status>
  <Take>7</Take>
</BranchPaymentMethodTypeSearch>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModelOfListOfBranchPaymentMethodType
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Collection of BranchPaymentMethodType

None.

Pagination

Pagination

None.

Response Formats

application/json, text/json

Sample:

Sample not available.