Last updated 6 months ago
Was this helpful?
Get detailed list of existing configurations
curl -L \ --url '/api/v4.0/conf/configs'
{ "total": 1, "items": [ { "date": "2025-04-03T05:49:20.232Z", "description": "text", "id": "text", "logs": [ { "date": "2025-04-03T05:49:20.232Z", "version": "text" } ], "version": "text" } ] }
Retrieve a complete configuration
curl -L \ --url '/api/v4.0/conf/configs/{config}'
No body
Get all versions of a given configuration
curl -L \ --url '/api/v4.0/conf/configs/{config}/versions'
{ "total": 1, "items": [ { "author": "text", "email": "name@gmail.com", "message": "text", "date": "2025-04-03T05:49:20.232Z", "version": "42bcc1282349db1e5791484c3d69420b1d8a8bc1", "parents": [ "f44073242093228b45bff7eb7a065559fa9b46aa" ] } ] }
Set a previous version of a configuration to be the current one
curl -L \ --request PUT \ --url '/api/v4.0/conf/configs/{config}/versions/{version}/revert'
{ "message": "Successfully updated entry" }