Skip to main content
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>'
{
  "items": [
    {
      "id": "<string>",
      "envelopeId": "<string>",
      "organizationId": "<string>",
      "seq": 123,
      "actorId": "<string>",
      "occurredAt": "2023-11-07T05:31:56Z",
      "prevHash": "<string>",
      "hash": "<string>",
      "payload": null,
      "ipAddress": "<string>",
      "userAgent": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

id
string
required

Envelope id

Minimum string length: 1

Response

All events, ordered by seq

items
object[]
required