Update Configuration Status

The Update Configuration Status enables you to update the status of an existing configuration using a configId.

You can update a configuration status by making a PATCH request to the Update Configuration Status endpoint, including the configId you want to update in the URL. For example:

{{base-url}}/eds/api/v1/Configs/{configId}/status

The request should include the new status of the configuration. See the following example:

{
"status": "inactive"
}

If successful, a 200 response is returned confirming the status was updated successfully.

👍

More Information