SignerComponentTokenScopeInput
Resource scope for the signer component. Identifies the recipient signing session this token authorises. Provide either recipientId or sessionId, but not both.
Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
recipientId | ID | No | — | Recipient (signer) this token is scoped to. Use when you have the recipient ID but not yet a session |
sessionId | ID | No | — | Session ID for the recipient's signing session. Use when you already have an active session |
Example
Using recipientId:
signer: {
recipientId: "cmVjMTIzNDU2"
}
Or using sessionId if you already have one:
signer: {
sessionId: "c2VzMTIzNDU2"
}