Skip to main content
PUT
/
api
/
applications
/
{id}
Update application
curl --request PUT \
  --url https://your-instance.example.com/api/applications/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "_id": "<string>",
  "fromHistoryModal": true,
  "pipelineId": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
_id
string
fromHistoryModal
boolean
pipelineId
string

Response

Application updated

Generic response envelope. Endpoint-specific fields are intentionally open.