Bulk Update Job Architecture Changes
curl --request PATCH \
  --url https://{tenant_name}.{region}.techwolf.ai/job_architecture/changes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "change_status": "saved",
  "change_ids": [
    "6129e3f1-663f-44ea-aa3f-2ce1077b834c",
    "22d2c013-ab77-410e-b5fb-2f96eed9c1db"
  ]
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
change_status
enum<string>
required

The new status to apply to all specified changes

Available options:
saved,
deleted
Example:

"saved"

change_ids
string[]
required

List of change external IDs to update. Each change to update needs to be in the "suggested" state.

Example:
[
"6129e3f1-663f-44ea-aa3f-2ce1077b834c",
"22d2c013-ab77-410e-b5fb-2f96eed9c1db"
]

Response

No Content