action yodlee_delete_api_key {
label: "Delete API Key"
description: "This endpoint allows an existing API key to be deleted.
You can use one of the following authorization methods to access this API:
- cobsession
- JWT token
Notes: This service is not available in developer sandbox environment and will be made availablefor testing in your dedicated environment. "
provider: yodlee
method: DELETE
path: "/auth/apiKey/{key}"
encoding: json
input: {
type: "object"
properties: {
key: {
type: "string"
}
}
required: ["key"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}