RocketKOR

List Future Scheduled Transaction Times

Retrieve a list of future dates for a scheduled transaction. This list shows the date and time that each transaction is scheduled to be executed

Endpoint

GET /v1/scheduled-transactions/{scheduledTransactionId}/scheduled-times

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

scheduledTransactionId  REQUIRED

string (UUID)

ID of the scheduled transaction in the RocketKOR system.

Query Parameters

dateTo  REQUIRED

string (date)

Date of the scheduled transaction. This filter will return future transactions scheduled on or before this date.

Note  The date is interpreted using the timeZone value specified in the scheduled transaction request. UTC format is used if timeZone is not provided.

Request Body

None

Returns

Returns a list of future dates/times when the transaction is scheduled to be executed.

SAMPLE RESPONSE

				
					[
  "2023-10-30T03:34:29.984Z",
  "2023-11-06T03:34:29.984Z",
  "2023-11-13T03:34:29.984Z"
]