Skip to main content
PUT
/
api
/
v1
/
executions
/
{id.project}
/
{id.domain}
/
{id.name}
Update execution belonging to project domain
curl --request PUT \
  --url https://mycluster.domino.tech/api/v1/executions/{id.project}/{id.domain}/{id.name} \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": {
    "org": "<string>"
  },
  "state": "EXECUTION_ACTIVE"
}
'
{}

Path Parameters

id.project
string
required

Name of the project the resource belongs to.

id.domain
string
required

Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project.

id.name
string
required

User or system provided value for the resource.

Body

application/json
id
Identifier of the execution to update · object
state
enum<string>
default:EXECUTION_ACTIVE

The state of the execution is used to control its visibility in the UI/CLI.

  • EXECUTION_ACTIVE: By default, all executions are considered active.
  • EXECUTION_ARCHIVED: Archived executions are no longer visible in the UI.
Available options:
EXECUTION_ACTIVE,
EXECUTION_ARCHIVED

Response

A successful response.

The response is of type object.