You are in REST API » v14.0 || Go to



Configuration

Details

  • URL: /configuration/
  • Method: GET
  • Parameters: NONE
  • Output: List of all minerva configuration details.
  • Example:
    curl -X GET https://minerva-dev.lcsb.uni.lu/minerva/api/configuration/
    

Configurable options

List options

  • URL: /configuration/options/
  • Method: GET
  • Parameters: NONE
  • Output: List of all minerva configurable options.
  • Example:
    curl -X GET https://minerva-dev.lcsb.uni.lu/minerva/api/configuration/options/
    

Modify option

  • URL: /configuration/options/{option}
  • Method: PATCH
  • Parameters: json object representing option to be updated
  • Output: Modified option.
  • Example:
    curl -X PATCH --data '{"option":{"value":"0.79"}}' \
    --cookie "MINERVA_AUTH_TOKEN=xxxxxxxx" \
    https://minerva-dev.lcsb.uni.lu/minerva/api/configuration/options/OVERLAY_OPACITY
    


Back to top