UserSignatureElement
A UserSignatureElement is a pre-placed signature position on a Template for a specific user. This allows users to place their signature on templates before sending.
Fields
| Field | Type | Description |
|---|---|---|
id | ID! | Unique identifier |
userId | ID! | The user this signature belongs to |
ax | Float | Start X coordinate |
ay | Float | Start Y coordinate |
bx | Float | End X coordinate |
by | Float | End Y coordinate |
page | Int | Page number |
link | String | Short-lease URL to the signature image |
Query
Accessed via Template.userSignatureConnection:
query GetUserSignatures {
template(id: "dHBsYjQ5YTg5NWQtYWRhMy0xMWYwLWIxZGMtMDY5NzZlZmU0MzIx") {
userSignatureConnection {
userSignatureElements {
id
userId
ax
ay
bx
by
page
link
}
}
}
}