startBulk
Create a new bulk send task. Returns a bulk ID (UUID) for use with addBulkDocument and sendBulk.
The full bulk flow is:
startBulk→ returns bulk ID (UUID)addBulkDocument× N → queue documentssendBulk→ sends all queued documents
Input
Return Type
ID — the bulk ID (UUID).
Example
mutation StartBulk {
startBulk(input: {
groupId: "Z3JwMTIzNDU2"
name: "March Contracts"
})
}