GET api/Transaction/GetTransactionLogs?trn={trn}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
trn

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TransactionStepLogDisplay
NameDescriptionTypeAdditional information
TransactionRefNo

string

None.

TransactionStepLogId

integer

None.

TransactionAttemptSequence

byte

None.

TransactionStepTypeCode

string

None.

TransactionStepTypeName

string

None.

ErrorCode

integer

None.

UserMessage

string

None.

CreatedDateTime

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TransactionRefNo": "sample string 1",
    "TransactionStepLogId": 2,
    "TransactionAttemptSequence": 64,
    "TransactionStepTypeCode": "sample string 3",
    "TransactionStepTypeName": "sample string 4",
    "ErrorCode": 1,
    "UserMessage": "sample string 5",
    "CreatedDateTime": "2026-04-07T20:06:49.2866762+10:00"
  },
  {
    "TransactionRefNo": "sample string 1",
    "TransactionStepLogId": 2,
    "TransactionAttemptSequence": 64,
    "TransactionStepTypeCode": "sample string 3",
    "TransactionStepTypeName": "sample string 4",
    "ErrorCode": 1,
    "UserMessage": "sample string 5",
    "CreatedDateTime": "2026-04-07T20:06:49.2866762+10:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTransactionStepLogDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.Transactions">
  <TransactionStepLogDisplay>
    <CreatedDateTime>2026-04-07T20:06:49.2866762+10:00</CreatedDateTime>
    <ErrorCode>1</ErrorCode>
    <TransactionAttemptSequence>64</TransactionAttemptSequence>
    <TransactionRefNo>sample string 1</TransactionRefNo>
    <TransactionStepLogId>2</TransactionStepLogId>
    <TransactionStepTypeCode>sample string 3</TransactionStepTypeCode>
    <TransactionStepTypeName>sample string 4</TransactionStepTypeName>
    <UserMessage>sample string 5</UserMessage>
  </TransactionStepLogDisplay>
  <TransactionStepLogDisplay>
    <CreatedDateTime>2026-04-07T20:06:49.2866762+10:00</CreatedDateTime>
    <ErrorCode>1</ErrorCode>
    <TransactionAttemptSequence>64</TransactionAttemptSequence>
    <TransactionRefNo>sample string 1</TransactionRefNo>
    <TransactionStepLogId>2</TransactionStepLogId>
    <TransactionStepTypeCode>sample string 3</TransactionStepTypeCode>
    <TransactionStepTypeName>sample string 4</TransactionStepTypeName>
    <UserMessage>sample string 5</UserMessage>
  </TransactionStepLogDisplay>
</ArrayOfTransactionStepLogDisplay>