Skip to main content
GET
/
payments
/
workflow_config
/
{configId}
Retrieve workflow configuration
curl --request GET \
  --url https://api.fireblocks.io/v1/payments/workflow_config/{configId}
{
  "configId": "<string>",
  "configName": "<string>",
  "status": "PENDING",
  "createdAt": 123,
  "configOperations": [
    {
      "operationId": "<string>",
      "type": "CONVERSION",
      "params": {
        "destAssetId": "<string>",
        "amount": "<string>",
        "accountId": "<string>",
        "srcAssetId": "<string>",
        "slippageBasisPoints": 5000
      },
      "status": "PENDING",
      "validationFailure": {
        "reason": "ACCOUNT_NOT_FOUND",
        "data": {}
      }
    }
  ],
  "preScreening": {
    "enabled": true
  },
  "externalCorrelationData": {}
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

configId
string
required

Response

Returns a workflow configuration

configId
string
required
configName
string
required
status
enum<string>
required
Available options:
PENDING,
VALIDATION_IN_PROGRESS,
VALIDATION_FAILED,
READY_FOR_EXECUTION
createdAt
number
required
configOperations
object[]
required
preScreening
object
externalCorrelationData