action yodlee_delete_provider_account {
label: "Delete Provider Account"
description: "The delete provider account service is used to delete a provider account from the Yodlee system. This service also deletes the accounts that are created in the Yodlee system for that provider account.
This service does not return a response. The HTTP response code is 204 (Success with no content).
"
provider: yodlee
method: DELETE
path: "/providerAccounts/{providerAccountId}"
encoding: json
input: {
type: "object"
properties: {
providerAccountId: {
type: "integer"
format: "int64"
}
}
required: ["providerAccountId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}