Remove workflow documents

Method Path
DELETE /api/v1/workspaces/{workspaceId}/workflows/{workflowId}/documents

Parameters

  • documentIds array | required

An array of document ids.

Example

curl --request DELETE 'https://app.yumisign.com/api/v1/workspaces/1/workflows/1/documents' \
    --header 'Content-Type: application/json' \
    --data-raw '{
        "documentIds": [1,2]
    }'
[
    {
        "identifier": "1",
        "result": true,
        "response": null,
        "error": null
    },
    {
        "identifier": "2",
        "result": true,
        "response": null,
        "error": null
    }
]