getAllAccountNotes
Retrieve all account notes linked to specified accounts in Mews MCP, filtering by ID, creation or update date range, and pagination for efficient data management.
Instructions
Returns all the account notes associated with the specified accounts within the chain
Input Schema
Name | Required | Description | Default |
---|---|---|---|
AccountIds | No | Filter by account IDs | |
CreatedUtc | No | Date range filter for note creation | |
Limitation | No | Pagination settings | |
UpdatedUtc | No | Date range filter for note updates |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"AccountIds": {
"description": "Filter by account IDs",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"CreatedUtc": {
"description": "Date range filter for note creation",
"properties": {
"EndUtc": {
"description": "End of creation date range (ISO 8601)",
"type": "string"
},
"StartUtc": {
"description": "Start of creation date range (ISO 8601)",
"type": "string"
}
},
"type": "object"
},
"Limitation": {
"description": "Pagination settings",
"properties": {
"Count": {
"description": "Maximum number of notes to return",
"type": "number"
},
"Cursor": {
"description": "Pagination cursor for next page",
"type": "string"
}
},
"type": "object"
},
"UpdatedUtc": {
"description": "Date range filter for note updates",
"properties": {
"EndUtc": {
"description": "End of update date range (ISO 8601)",
"type": "string"
},
"StartUtc": {
"description": "Start of update date range (ISO 8601)",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}