put https://uat-api.thredd.com/eds/api/v1/Configs/
This endpoint updates an existing configuration based on the provided configuration ID and request payload. To update an existing configuration, provide the configId along with both status and messageTypeFilter in the request body. The system will replace the existing values with the new ones provided. Partial updates are not supported, omitting any required field will result in a 400 Bad Request.
Sample request:
PUT /api/v1/Configs/3f2504e0-4f89-11d3-9a0c-0305e82c3301
{
"status": "active",
"messageTypeFilter": [1,3]
}
DocumentationFor more information on this endpoint, see Update Configuration.