curl --request GET \
--url https://api.platform.dakota.xyz/sandbox/scenarios \
--header 'x-api-key: <api-key>'{
"scenarios": [
{
"name": "success_immediate",
"description": "Simulates an immediate successful settlement callback sequence.",
"valid_for": [
"ach_inbound",
"wire_inbound"
],
"stateful": false,
"example_webhook_sequence": [
"transaction.created",
"transaction.completed"
]
}
]
}Returns the catalog of all scenarios that can be passed as the scenario
field to POST /sandbox/simulate/inbound. Use this to discover valid
scenario names and understand their behaviour without reading source code.
curl --request GET \
--url https://api.platform.dakota.xyz/sandbox/scenarios \
--header 'x-api-key: <api-key>'{
"scenarios": [
{
"name": "success_immediate",
"description": "Simulates an immediate successful settlement callback sequence.",
"valid_for": [
"ach_inbound",
"wire_inbound"
],
"stateful": false,
"example_webhook_sequence": [
"transaction.created",
"transaction.completed"
]
}
]
}Was this page helpful?