action change_get_api_v1_nonprofits_list { label: "Search a nonprofit" description: "Retrieves a list of nonprofits whose names match the provided name. This endpoint is paginated." provider: change method: GET path: "/api/v1/nonprofits/list" encoding: json input: { type: "object" properties: { name: { type: "string" } page: { type: "number" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }