GET api/transactionlogs

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TransactionLogs
NameDescriptionTypeAdditional information
Id

integer

None.

StudentID

integer

None.

TermID

integer

None.

TransactionType

string

None.

TransactionMessage

string

None.

TransactionBy

string

None.

TransactionDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "studentID": 2,
    "termID": 3,
    "transactionType": "sample string 4",
    "transactionMessage": "sample string 5",
    "transactionBy": "sample string 6",
    "transactionDate": "2024-09-20T01:53:20.7479173+08:00"
  },
  {
    "id": 1,
    "studentID": 2,
    "termID": 3,
    "transactionType": "sample string 4",
    "transactionMessage": "sample string 5",
    "transactionBy": "sample string 6",
    "transactionDate": "2024-09-20T01:53:20.7479173+08:00"
  }
]

text/html

Sample:
[{"id":1,"studentID":2,"termID":3,"transactionType":"sample string 4","transactionMessage":"sample string 5","transactionBy":"sample string 6","transactionDate":"2024-09-20T01:53:20.7479173+08:00"},{"id":1,"studentID":2,"termID":3,"transactionType":"sample string 4","transactionMessage":"sample string 5","transactionBy":"sample string 6","transactionDate":"2024-09-20T01:53:20.7479173+08:00"}]

application/xml, text/xml

Sample:
<ArrayOfTransactionLogs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <TransactionLogs>
    <Id>1</Id>
    <StudentID>2</StudentID>
    <TermID>3</TermID>
    <TransactionBy>sample string 6</TransactionBy>
    <TransactionDate xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2024-09-19T17:53:20.7479173Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>480</d3p1:OffsetMinutes>
    </TransactionDate>
    <TransactionMessage>sample string 5</TransactionMessage>
    <TransactionType>sample string 4</TransactionType>
  </TransactionLogs>
  <TransactionLogs>
    <Id>1</Id>
    <StudentID>2</StudentID>
    <TermID>3</TermID>
    <TransactionBy>sample string 6</TransactionBy>
    <TransactionDate xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2024-09-19T17:53:20.7479173Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>480</d3p1:OffsetMinutes>
    </TransactionDate>
    <TransactionMessage>sample string 5</TransactionMessage>
    <TransactionType>sample string 4</TransactionType>
  </TransactionLogs>
</ArrayOfTransactionLogs>