v1 (deprecated)
Get Execution
GET
/
public
/
v1
/
executions
/
{executionId}
Path
curl \
-X GET \
-u :<access-token> \
https://api.defer.run/public/v1/executions/0ujtsYcgvSTl8PAuAdqWYSMnLOv
{
"id": "0ujtsYcgvSTl8PAuAdqWYSMnLOv",
"state": "failed",
"result": "hello John Doe"
}
Endpoint
GET https://api.defer.run/public/v1/executions/{execution-id}
Request
Path Parameters
execution-id
string
requiredThe execution ID.
Response
Body
id
string
requiredThe state of the execution.
state
created | started | succeed | failed | cancelled | aborting | aborted | discarded
requiredThe ID of the execution.
result
any
The result returns by the function.
Was this page helpful?
curl \
-X GET \
-u :<access-token> \
https://api.defer.run/public/v1/executions/0ujtsYcgvSTl8PAuAdqWYSMnLOv
{
"id": "0ujtsYcgvSTl8PAuAdqWYSMnLOv",
"state": "failed",
"result": "hello John Doe"
}