Smart Transaction Object

The Smart Transaction object represents a transaction that has been configured and created by the Smart Transaction API. This may be a single-leg transaction (SLT), multi-leg transaction (MLT), or scheduled transaction.

Attributes

entityId

string (UUID)

ID of the transaction in the RocketKOR system.

entityType

string, enum values: SINGLE_TRANSACTION, MULTI_LEG_TRANSACTION, SCHEDULED_TRANSACTION

Transaction type. The following values are supported:

  • SINGLE_TRANSACTION  Single-leg transaction (SLT).
  • MULTI_LEG_TRANSACTION  Multi-leg transaction (MLT).
  • SCHEDULED_TRANSACTION  Scheduled transaction.

_embedded

object

Embedded subresources for the transaction.

transaction

object

Contains the Single-Leg Transaction (SLT) object. This object contains the transaction details.

Note  Only returned for SLTs. Not returned for multi-leg transactions (MLTs) or scheduled transactions.

Smart Transaction Object

				
					{
  "entityId": "string(UUID)",
  "entityType": "SINGLE_TRANSACTION | MULTI_LEG_TRANSACTION | SCHEDULED_TRANSACTION",
  "_embedded": {
    "transaction": {...} // SLT object
  }
}
				
			
Exit mobile version