action yodlee_get_transactions_count {
label: "Get Transactions Count"
description: "The count service provides the total number of transactions for a specific user depending on the input parameters passed.
If you are implementing pagination for transactions, call this endpoint before calling GET /transactions to know the number of transactions that are returned for the input parameters passed.
The functionality of the input parameters remains the same as that of the GET /transactions endpoint.
"
provider: yodlee
method: GET
path: "/transactions/count"
encoding: json
input: {
type: "object"
properties: {
accountId: {
type: "string"
}
baseType: {
type: "string"
}
categoryId: {
type: "string"
}
categoryType: {
type: "string"
}
container: {
type: "string"
}
detailCategoryId: {
type: "string"
}
fromDate: {
type: "string"
}
highLevelCategoryId: {
type: "string"
}
keyword: {
type: "string"
}
toDate: {
type: "string"
}
type: {
type: "string"
}
}
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}