GET api/PayeeTransaction/GetPayeePursuedTransactionByAccountID?accountID={accountID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PayeePursuedTransactionByAccountID
NameDescriptionTypeAdditional information
PrincipalID

integer

None.

TransactionDesc

string

None.

AccountID

integer

None.

PrincipalAmount

decimal number

None.

PrincipalBalance

decimal number

None.

PrincipalComponentType

string

None.

PrincipalComponentAmount

decimal number

None.

PrincipalComponentLUPAllocatedAmount

decimal number

None.

PrincipalComponentLUPBalance

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PrincipalID": 1,
    "TransactionDesc": "sample string 2",
    "AccountID": 3,
    "PrincipalAmount": 4.0,
    "PrincipalBalance": 1.0,
    "PrincipalComponentType": "sample string 5",
    "PrincipalComponentAmount": 1.0,
    "PrincipalComponentLUPAllocatedAmount": 1.0,
    "PrincipalComponentLUPBalance": 1.0
  },
  {
    "PrincipalID": 1,
    "TransactionDesc": "sample string 2",
    "AccountID": 3,
    "PrincipalAmount": 4.0,
    "PrincipalBalance": 1.0,
    "PrincipalComponentType": "sample string 5",
    "PrincipalComponentAmount": 1.0,
    "PrincipalComponentLUPAllocatedAmount": 1.0,
    "PrincipalComponentLUPBalance": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfPayeePursuedTransactionByAccountID xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.PayeeTransaction">
  <PayeePursuedTransactionByAccountID>
    <AccountID>3</AccountID>
    <PrincipalAmount>4</PrincipalAmount>
    <PrincipalBalance>1</PrincipalBalance>
    <PrincipalComponentAmount>1</PrincipalComponentAmount>
    <PrincipalComponentLUPAllocatedAmount>1</PrincipalComponentLUPAllocatedAmount>
    <PrincipalComponentLUPBalance>1</PrincipalComponentLUPBalance>
    <PrincipalComponentType>sample string 5</PrincipalComponentType>
    <PrincipalID>1</PrincipalID>
    <TransactionDesc>sample string 2</TransactionDesc>
  </PayeePursuedTransactionByAccountID>
  <PayeePursuedTransactionByAccountID>
    <AccountID>3</AccountID>
    <PrincipalAmount>4</PrincipalAmount>
    <PrincipalBalance>1</PrincipalBalance>
    <PrincipalComponentAmount>1</PrincipalComponentAmount>
    <PrincipalComponentLUPAllocatedAmount>1</PrincipalComponentLUPAllocatedAmount>
    <PrincipalComponentLUPBalance>1</PrincipalComponentLUPBalance>
    <PrincipalComponentType>sample string 5</PrincipalComponentType>
    <PrincipalID>1</PrincipalID>
    <TransactionDesc>sample string 2</TransactionDesc>
  </PayeePursuedTransactionByAccountID>
</ArrayOfPayeePursuedTransactionByAccountID>