action increase_retrieve_a_document { label: "Retrieve a Document" provider: increase method: GET path: "/documents/{document_id}" encoding: json input: { type: "object" properties: { document_id: { type: "string" description: "The identifier of the Document to retrieve." } } required: ["document_id"] additionalProperties: false } output: { 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: ["category", "created_at", "entity_id", "file_id", "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"] } } } }