POST api/v1/transactionitems/searchservices

Request Information

URI Parameters

None.

Body Parameters

BranchTransactionServiceSearch
NameDescriptionTypeAdditional information
Id

integer

None.

CustomerId

integer

None.

Services

Collection of integer

None.

Search

string

None.

DateStart

date

None.

DateEnd

date

None.

Skip

integer

None.

Take

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CustomerId": 2,
  "Services": [
    1,
    2
  ],
  "Search": "sample string 3",
  "DateStart": "2026-03-17T21:42:29.7398526-04:00",
  "DateEnd": "2026-03-17T21:42:29.7398526-04:00",
  "Skip": 4,
  "Take": 5
}

application/xml, text/xml

Sample:
<BranchTransactionServiceSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Branches.Search">
  <CustomerId>2</CustomerId>
  <DateEnd>2026-03-17T21:42:29.7398526-04:00</DateEnd>
  <DateStart>2026-03-17T21:42:29.7398526-04:00</DateStart>
  <Id>1</Id>
  <Search>sample string 3</Search>
  <Services xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Services>
  <Skip>4</Skip>
  <Take>5</Take>
</BranchTransactionServiceSearch>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModelOfListOfBranchTransactionService
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Collection of BranchTransactionService

None.

Pagination

Pagination

None.

Response Formats

application/json, text/json

Sample:

Sample not available.