POST api/Action/AddMultipleBankAction
Request Information
URI Parameters
None.
Body Parameters
MultipleBankActionDtoName | Description | Type | Additional information |
---|---|---|---|
SerialCode | string |
None. |
|
SerialNumber | integer |
None. |
|
ProcessDate | date |
None. |
|
Actions | Collection of BankActionItemDto |
None. |
Request Formats
application/json, text/json
Sample:
{ "serialCode": "sample string 1", "serialNumber": 2, "processDate": "2025-05-24T14:29:58.2768269+03:00", "actions": [ { "bankId": "sample string 1", "accountId": "sample string 2", "amount": 3.0, "entryExitType": 4, "currencyId": "sample string 5" }, { "bankId": "sample string 1", "accountId": "sample string 2", "amount": 3.0, "entryExitType": 4, "currencyId": "sample string 5" } ] }
application/xml, text/xml
Sample:
<MultipleBankActionDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs"> <Actions> <BankActionItemDto> <AccountId>sample string 2</AccountId> <Amount>3</Amount> <BankId>sample string 1</BankId> <CurrencyId>sample string 5</CurrencyId> <EntryExitType>4</EntryExitType> </BankActionItemDto> <BankActionItemDto> <AccountId>sample string 2</AccountId> <Amount>3</Amount> <BankId>sample string 1</BankId> <CurrencyId>sample string 5</CurrencyId> <EntryExitType>4</EntryExitType> </BankActionItemDto> </Actions> <ProcessDate>2025-05-24T14:29:58.2768269+03:00</ProcessDate> <SerialCode>sample string 1</SerialCode> <SerialNumber>2</SerialNumber> </MultipleBankActionDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"serialCode":"sample string 1","serialNumber":2,"processDate":"2025-05-24T14:29:58.2768269+03:00","actions":[{"bankId":"sample string 1","accountId":"sample string 2","amount":3.0,"entryExitType":4,"currencyId":"sample string 5"},{"bankId":"sample string 1","accountId":"sample string 2","amount":3.0,"entryExitType":4,"currencyId":"sample string 5"}]}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.