Add workflow document ===================== +--------+-------------------------------------------------------------------+ | Method | Path | +========+===================================================================+ | POST | /api/v1/workspaces/{workspaceId}/workflows/{workflowId}/documents | +--------+-------------------------------------------------------------------+ Parameters ---------- * ``document`` binary | required Another document for your workflow. It must be a pdf file with a max size of 20M. Example """"""" .. code-block:: bash curl --request POST 'https://app.yumisign.com/api/v1/workspaces/1/workflows/1/documents' \ --form 'document=@"/path/to/my/document2.pdf"' .. code-block:: json { "id": 1, "status":"not_started", "documents": [ { "id": 1, "position": 1, "file": { "name": "document.pdf" "format": "pdf", "size": 104414, "file": "https://app.yumisign.com/api/v1/storage/temp/1/doc/614436f59c9acecc05aa4b98416707f1", "thumb": "https://app.yumisign.com/api/v1/storage/temp/1/doc/614436f565db844c7b6f5a53befbcd80" } }, { "id": 2, "position": 2, "file": { "name": "document2.pdf" "format": "pdf", "size": 343221, "file": "https://app.yumisign.com/api/v1/storage/temp/2/doc/62b320d0bc57e7c7e7d4e27de816458c", "thumb": "https://app.yumisign.com/api/v1/storage/temp/2/doc/62b320d046bbf7d9f6c91fd1774c8eac" } } ] }