GET /v1/signature/envelopes/{id}/timeline
const url = 'https://api.asap.cool/v1/signature/envelopes/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/timeline';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.asap.cool/v1/signature/envelopes/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/timeline \ --header 'Authorization: Bearer <token>'Authorizations
Section intitulée « Authorizations »Parameters
Section intitulée « Parameters »Path Parameters
Section intitulée « Path Parameters »Envelope identifier.
Responses
Section intitulée « Responses »Readable chronology, oldest first.
One readable entry in an envelope’s chronology.
object
SHA-256 of the canonical content (hex) — kept for chain verification.
Structured payload (recipient counts, masked metadata, …).
Event kind (created, sent, viewed, reminder_sent, reactivated,
…) — the client maps it to a localized label.
When the event occurred (RFC3339).
0-based position in the chain.
The signer’s email, resolved from signer_id for display.
The signer the event concerns, if any.
Example generated
[ { "content_hash": "example", "event_data": "example", "event_type": "example", "occurred_at": "example", "seq_index": 1, "signer_email": "example", "signer_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" }]No active org.
Generic error body returned by API handlers when they fail. code is a
stable machine-readable token; message is human-friendly and meant for
surfacing to end users.
object
Stable machine token (e.g. invalid_credentials).
Offending request field for validation errors, when known.
Human-readable message.
Example generated
{ "code": "example", "field": "example", "message": "example"}Missing signature:read scope.
Generic error body returned by API handlers when they fail. code is a
stable machine-readable token; message is human-friendly and meant for
surfacing to end users.
object
Stable machine token (e.g. invalid_credentials).
Offending request field for validation errors, when known.
Human-readable message.
Example generated
{ "code": "example", "field": "example", "message": "example"}Not found or cross-org.
Generic error body returned by API handlers when they fail. code is a
stable machine-readable token; message is human-friendly and meant for
surfacing to end users.
object
Stable machine token (e.g. invalid_credentials).
Offending request field for validation errors, when known.
Human-readable message.
Example generated
{ "code": "example", "field": "example", "message": "example"}