action increase_list_documents { label: "List Documents" provider: increase method: GET path: "/documents" encoding: json input: { type: "object" properties: { "category.in": { type: "array" description: "Return results whose value is in the provided list. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`." items: { type: "string" enum: ["form_1099_int"] } } "created_at.after": { type: "string" format: "date-time" description: "Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "created_at.before": { type: "string" format: "date-time" description: "Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "created_at.on_or_after": { type: "string" format: "date-time" description: "Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } "created_at.on_or_before": { type: "string" format: "date-time" description: "Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp." } cursor: { type: "string" description: "Return the page of entries after this one." } entity_id: { type: "string" description: "Filter Documents to ones belonging to the specified Entity." } limit: { type: "integer" description: "Limit the size of the list that is returned. The default (and maximum) is 100 objects." } } additionalProperties: false } output: { type: "object" description: "A list of Document objects" required: ["data", "next_cursor"] properties: { data: { type: "array" description: "The contents of the list." items: { type: "object" description: "Increase generates certain documents / forms automatically for your application; they can be listed here. Currently the only supported document type is IRS Form 1099-INT." required: ["id", "category", "created_at", "entity_id", "file_id", "type"] properties: { category: { type: "string" description: "The type of document." enum: ["form_1099_int"] } created_at: { type: "string" format: "date-time" description: "The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Document was created." } entity_id: { type: "string" description: "The identifier of the Entity the document was generated for." } file_id: { type: "string" description: "The identifier of the File containing the Document's contents." } id: { type: "string" description: "The Document identifier." } type: { type: "string" description: "A constant representing the object's type. For this resource it will always be `document`." enum: ["document"] } } } } next_cursor: { type: "string" description: "A pointer to a place in the list." } } } }