Retrieve an MLT History Snapshot

Retrieve a specific multi-leg transaction (MLT) history snapshot by providing the snapshot’s ID. This ID can be retrieved with the List MLT History Snapshots API.

An MLT history snapshot records the state of an MLT at a specific point in time. History snapshots are created automatically based on events such as the MLT creation, edits to the MLT, and changes to the MLT status.

Endpoint

GET /v1/multi-leg-transactions/{transactionId}/histories/{historyId}

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

transactionId  REQUIRED

string (UUID)

ID of the multi-leg transaction (MLT).

historyId  REQUIRED

string (UUID)

ID of the multi-leg transaction (MLT) history snapshot.

Request Body

None

Returns

Returns the MLT History Snapshot object. The object provides detailed information for an MLT at a specific point in time and contains the MLT Detail object.

SAMPLE RESPONSE

				
					{
  "id": "9b4aff10-ad49-4f72-ae77-204a28f60196",
  "transactionId": "c0555c1a-0699-4ff4-aa9d-cd2724832be4",
  "eventType": "CREATE",
  "description": "description",
  "snapshotApiVersion": "1",
  "snapshot": {...} // contains the MLT Detail object
}
				
			
Exit mobile version