MPC Tally API Server

get-address-created-proposals

Get proposals created by an address for a specific organization

Input Schema

NameRequiredDescriptionDefault
addressYesThe Ethereum address to get created proposals for
afterCursorNoCursor for pagination
beforeCursorNoCursor for previous page pagination
limitNoMaximum number of proposals to return (default: 20)
organizationSlugYesThe organization slug to get proposals from

Input Schema (JSON Schema)

{ "properties": { "address": { "description": "The Ethereum address to get created proposals for", "type": "string" }, "afterCursor": { "description": "Cursor for pagination", "type": "string" }, "beforeCursor": { "description": "Cursor for previous page pagination", "type": "string" }, "limit": { "description": "Maximum number of proposals to return (default: 20)", "type": "number" }, "organizationSlug": { "description": "The organization slug to get proposals from", "type": "string" } }, "required": [ "address", "organizationSlug" ], "type": "object" }