draft
Returns a single Draft by ID. A Draft stores saved send settings that can be resumed later.
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
id | ID | No | Global node ID |
draftId | ID | No | Draft-specific ID |
Provide either id or draftId.
Return Type
Example
query GetDraft($id: ID!) {
draft(id: $id) {
id
name
shared
templateCount
batch
multidoc
version
link
created
modified
creator {
id
firstName
lastName
email
}
}
}