Skip to main content
GET
/
payments
/
workflow_execution
/
{workflowExecutionId}
Get workflow execution details
curl --request GET \
  --url https://api.fireblocks.io/v1/payments/workflow_execution/{workflowExecutionId}
{
  "executionId": "<string>",
  "configSnapshot": {
    "configId": "<string>",
    "configName": "<string>",
    "createdAt": 123,
    "configOperations": [
      {
        "operationId": "<string>",
        "type": "CONVERSION",
        "params": {
          "destAssetId": "<string>",
          "amount": "<string>",
          "accountId": "<string>",
          "srcAssetId": "<string>",
          "slippageBasisPoints": 5000
        }
      }
    ],
    "externalCorrelationData": {}
  },
  "executionOperations": [
    {
      "operationId": "<string>",
      "operationType": "SCREENING",
      "validationFailure": {
        "reason": "SCREENING_DISABLED_IN_TENANT",
        "data": {}
      },
      "execution": {
        "startedAt": 123,
        "output": {
          "verdicts": [
            {
              "executionOperationId": "<string>",
              "account": {
                "accountId": "<string>"
              },
              "assetId": "<string>",
              "amount": "<string>",
              "matchedRule": {
                "action": "<string>",
                "category": [
                  "<string>"
                ]
              }
            }
          ]
        },
        "finishedAt": 123,
        "failure": {
          "data": {
            "verdicts": [
              {
                "executionOperationId": "<string>",
                "account": {
                  "accountId": "<string>"
                },
                "assetId": "<string>",
                "amount": "<string>",
                "matchedRule": {
                  "action": "<string>",
                  "category": [
                    "<string>"
                  ]
                }
              }
            ]
          }
        }
      }
    }
  ],
  "preScreening": {
    "enabled": true
  },
  "triggeredBy": "<string>",
  "triggeredAt": 123,
  "finishedAt": 123,
  "externalCorrelationData": {}
}

Path Parameters

workflowExecutionId
string
required

Response

Returns workflow execution by id with preview info

executionId
string
required
configSnapshot
object
required
executionOperations
object[]
required
status
enum<string>
required
Available options:
PENDING,
VALIDATION_IN_PROGRESS,
VALIDATION_FAILED,
VALIDATION_COMPLETED,
PREVIEW_IN_PROGRESS,
PREVIEW_FAILED,
READY_FOR_LAUNCH,
EXECUTION_IN_PROGRESS,
EXECUTION_COMPLETED,
EXECUTION_FAILED
preScreening
object
triggeredBy
string
triggeredAt
number
finishedAt
number
externalCorrelationData