API Reference v3.0
- auth.v1
- API Reference
- ledger.v1
- ledger.v2
- payments.v1
- payments.v3
- search.v1
- webhooks.v1
- wallets.v1
- orchestration.v1
- GETGet server info
- GETList triggers
- POSTCreate trigger
- GETRead trigger
- DELDelete trigger
- GETList triggers occurrences
- GETList registered workflows
- POSTCreate workflow
- GETGet a flow by id
- DELDelete a flow by id
- POSTRun workflow
- GETList instances of a workflow
- GETGet a workflow instance by id
- POSTSend an event to a running workflow
- PUTCancel a running workflow
- GETGet a workflow instance history by id
- GETGet a workflow instance stage history
- GET
- orchestration.v2
- reconciliation.v1
orchestration.v1
Get a workflow instance history by id
Get a workflow instance history by id
GET
/
api
/
orchestration
/
instances
/
{instanceID}
/
history
Copy
Ask AI
curl --request GET \
--url http://localhost:55001/api/orchestration/instances/{instanceID}/history \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"data": [
{
"name": "<string>",
"input": {
"amount": {
"asset": "<string>",
"amount": 123
},
"destination": {
"wallet": {
"id": "<string>",
"balance": "<string>"
},
"account": {
"id": "<string>",
"ledger": "<string>"
},
"payment": {
"psp": "<string>"
}
},
"source": {
"wallet": {
"id": "<string>",
"balance": "<string>"
},
"account": {
"id": "<string>",
"ledger": "<string>"
},
"payment": {
"id": "<string>"
}
},
"metadata": {},
"timestamp": "2023-11-07T05:31:56Z"
},
"error": "<string>",
"terminated": true,
"startedAt": "2023-11-07T05:31:56Z",
"terminatedAt": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
The instance id
Response
200
application/json
The workflow instance history
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url http://localhost:55001/api/orchestration/instances/{instanceID}/history \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"data": [
{
"name": "<string>",
"input": {
"amount": {
"asset": "<string>",
"amount": 123
},
"destination": {
"wallet": {
"id": "<string>",
"balance": "<string>"
},
"account": {
"id": "<string>",
"ledger": "<string>"
},
"payment": {
"psp": "<string>"
}
},
"source": {
"wallet": {
"id": "<string>",
"balance": "<string>"
},
"account": {
"id": "<string>",
"ledger": "<string>"
},
"payment": {
"id": "<string>"
}
},
"metadata": {},
"timestamp": "2023-11-07T05:31:56Z"
},
"error": "<string>",
"terminated": true,
"startedAt": "2023-11-07T05:31:56Z",
"terminatedAt": "2023-11-07T05:31:56Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.