Skip to main content

Updating jobs

It is also possible to perform a simple update to an existing analysis job by calling the following Analysis API method and replace the <analysisId> with the unique ID of your job.

Request

Request Method: PUT

https://api.enablenow.nl/cfa/analysis-jobs/<analysisId>

For instance, if the analysisId is 4905bcb7-d7a3-4215-97ff-9e81e101e57a, you would create a PUT request to:

Request Method: PUT

https://api.enablenow.nl/cfa/analysis-jobs/4905bcb7-d7a3-4215-97ff-9e81e101e57a
// application/json request body
{
"Reference" : "An updated reference value"
}

Response

The response returned is the summary of the analysis job with the updated reference.

Example

{
"id": "4905bcb7-d7a3-4215-97ff-9e81e101e57a",
"reference": "An updated reference value",
"finishedAt": "2025-09-09T11:16:30.1532895",
"created": "2025-09-09T11:14:32.2310901",
"accountIds": [
"83b23ed8-6843-4f45-5fa3-08dd9f6118a6",
"4b3e7dca-5902-4c3b-5fa4-08dd9f6118a6"
],
"appId": 1,
"engine": "Z2",
"status": "COMPLETED",
"profile": "RETAIL",
"input": {
"consentIds": [
"7f44d5d7-da7e-4162-cc34-08dd9f6112d2"
]
},
"metadata": {}
}

At the moment, the Reference field is the only value that can be updated.