Delete Config Store Option by name

DELETE /platform/configuration/store/{config_option_id}

Delete Config Store Option by name.

Path parameters

  • config_option_id string Required

    Name of the Config Store Option that you would like to delete

Responses

  • 200 application/json

    Config Store Option deleted successfully

    Hide headers attributes Show headers attributes
    • x-cloud-resource-version string

      The resource version, which is used to avoid update conflicts with concurrent operations

    • x-cloud-resource-created string

      The date-time when the resource was created (ISO format relative to UTC)

    • x-cloud-resource-last-modified string

      The date-time when the resource was last modified (ISO format relative to UTC)

  • 404 application/json

    Config Store Option do not exist by that name. (code: platform.config.store.not_found)

    Hide headers attribute Show headers attribute
    • x-cloud-error-codes string

      The error codes associated with the response

      Value is platform.config.store.not_found.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

DELETE /platform/configuration/store/{config_option_id}
curl \
 --request DELETE 'https://{{hostname}}/api/v1/platform/configuration/store/{config_option_id}' \
 --user "username:password"