action increase_simulate_a_tax_document_being_created { label: "Simulate a tax document being created" description: "Simulates an tax document being created for an account." provider: increase method: POST path: "/simulations/documents" encoding: json input: { type: "object" required: ["account_id"] properties: { account_id: { type: "string" description: "The identifier of the Account the tax document is for." } } } 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"] } } } }