Envelope event history
curl --request GET \
--url https://api.atlaswork.ai/api/v1/envelopes/{id}/events \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.atlaswork.ai/api/v1/envelopes/{id}/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.atlaswork.ai/api/v1/envelopes/{id}/events"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "<string>",
"envelopeId": "<string>",
"organizationId": "<string>",
"seq": 123,
"actorType": "sender",
"actorId": "<string>",
"action": "envelope.created",
"occurredAt": "2023-11-07T05:31:56Z",
"prevHash": "<string>",
"hash": "<string>",
"payload": null,
"ipAddress": "<string>",
"userAgent": "<string>"
}
]
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}envelopes
Envelope event history
Returns the envelope’s hash-chained event log ordered by seq ascending — the poll surface for lifecycle progress. Envelopes outside the API key’s organization yield 404. Note: participant.fields_auto_resolved event payloads carry machine-derived field values in plaintext (signer name/email, signing date, sender org) — treat responses from this endpoint per your data-retention policy.
GET
/
api
/
v1
/
envelopes
/
{id}
/
events
Envelope event history
curl --request GET \
--url https://api.atlaswork.ai/api/v1/envelopes/{id}/events \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.atlaswork.ai/api/v1/envelopes/{id}/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.atlaswork.ai/api/v1/envelopes/{id}/events"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "<string>",
"envelopeId": "<string>",
"organizationId": "<string>",
"seq": 123,
"actorType": "sender",
"actorId": "<string>",
"action": "envelope.created",
"occurredAt": "2023-11-07T05:31:56Z",
"prevHash": "<string>",
"hash": "<string>",
"payload": null,
"ipAddress": "<string>",
"userAgent": "<string>"
}
]
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}Authorizations
apiKeyoauthJwt
Organization API key (format atlas_sk_...), passed as a bearer token or the x-api-key header. Created and revoked in the dashboard (Better Auth api-key plugin); shown in full only once and stored hashed.
Path Parameters
Envelope id
Minimum string length:
1Response
All events, ordered by seq
Show child attributes
Show child attributes