Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Save the secure information:

    Code Block
    PUT  /namespaces/<namespace-id>/securekeys/<key-name>


    Where namespace-id is the namespace name, key-name is a key for your credentials. This key needs to be provided to pipelines to use the credentials. The call needs a JSON body with the format:

    Code Block
    {
      "description": "your description",
      "data": "your password",
      "properties": {
        "<property-key>": "<property-value>"
      }
    }
    Retrieve the secure information.
    to retrieve the secure information based on a single key name:
    Code Block
    GET  /namespaces/<namespace-id>/securekeys/<key-name>
    to retrieve the secure information for all keys:
    Code Block
    GET  /namespaces/<namespace-id>/securekeys
    to retrieve the properties and creation time of secure information:

  2. Code Block
    GET  /namespaces/<namespace-id>/securekeys/<key-name>/metadata

    Delete the secure information:

    Code Block
    DELETE /namespaces/<namespace-id>/securekeys/<key-name>