GET api/account/{id}/receipts?depositId={depositId}

Get Receipts for account

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

depositId

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Dezrez.Core.DataContracts.Accounts.Financial.Query.Receipt.ReceiptDataContract
NameDescriptionTypeAdditional information
DateTime

date

None.

Amount

decimal number

None.

PaymentType

Dezrez.Rezi.Domain.Accounts.Enums.PaymentType

None.

BankAccountId

integer

None.

BankAccountName

string

None.

AccountId

integer

None.

AccountName

string

None.

PropertyAccountId

integer

None.

IsDeposited

boolean

None.

DepositId

integer

None.

Description

string

None.

OriginalAmount

decimal number

None.

LedgerEntryId

integer

None.

IsReversed

boolean

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DateTime": "2024-03-28T18:19:40.5740449Z",
    "Amount": 2.0,
    "PaymentType": 0,
    "BankAccountId": 3,
    "BankAccountName": "sample string 4",
    "AccountId": 5,
    "AccountName": "sample string 6",
    "PropertyAccountId": 1,
    "IsDeposited": true,
    "DepositId": 1,
    "Description": "sample string 8",
    "OriginalAmount": 9.0,
    "LedgerEntryId": 10,
    "IsReversed": true,
    "Id": 12
  },
  {
    "DateTime": "2024-03-28T18:19:40.5740449Z",
    "Amount": 2.0,
    "PaymentType": 0,
    "BankAccountId": 3,
    "BankAccountName": "sample string 4",
    "AccountId": 5,
    "AccountName": "sample string 6",
    "PropertyAccountId": 1,
    "IsDeposited": true,
    "DepositId": 1,
    "Description": "sample string 8",
    "OriginalAmount": 9.0,
    "LedgerEntryId": 10,
    "IsReversed": true,
    "Id": 12
  }
]