SLT Status Object

The Single-Leg Transaction (SLT) Status object represents a change to a transaction’s status as it progresses through the transaction processing lifecycle.

Attributes

id

string (UUID)

ID of the status event.

transactionId

string (UUID)

ID of the transaction in the RocketKOR system.

parentTransactionId

string (UUID)

ID of the transaction’s parent transaction.

eventType

string

Event that triggered the transaction status change.

description

string

Description of the status change.

createdBy

object

Entity that created the transaction status.

id

string (UUID)

ID of the entity. Will be blank if createdBy.type is internal.

type

string enum, values: employee, internal, kor_employee, service-account

Type of entity. The following values are supported:

  • employee  Team Member using the RocketKOR Portal.
  • internal  Internal service call.
  • kor_employee  Rocket Financial employee.
  • service-account  Service Account using APIs.

createdAt

string (date-time), format: yyyy-MM-dd’T’HH:mm:ss.SSSz

Date and time the status was assigned to the transaction.

SLT Status Object

				
					{
  "id": "string(UUID)",
  "transactionId": "string(UUID)",
  "parentTransactionId": "string(UUID)",
  "eventType": "string",
  "description": "string",
  "createdBy": {
    "id": "string(UUID)",
    "type": "employee | internal | kor_employee | service-account"
  },
  "createdAt": "string(date-time)"
}