Check signing status
curl --request GET \
--url https://api.atlaswork.ai/api/v1/envelopes/{id}/status \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.atlaswork.ai/api/v1/envelopes/{id}/status', 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}/status"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"envelopeId": "<string>",
"status": "draft",
"detectionStatus": "none",
"terminal": true,
"currentParticipantId": "<string>",
"participants": [
{
"id": "<string>",
"orderIndex": 1,
"name": "<string>",
"status": "pending",
"isCurrent": true,
"signedAt": "2023-11-07T05:31:56Z",
"declinedAt": "2023-11-07T05:31:56Z",
"lastViewedAt": "2023-11-07T05:31:56Z"
}
],
"signedCount": 1,
"totalParticipants": 1,
"lastEventAt": "2023-11-07T05:31:56Z",
"summary": "<string>",
"documentReceived": true
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}envelopes
Check signing status
Returns lightweight participant progress and a human-readable lifecycle summary. Deferred-upload drafts also report whether document bytes have arrived.
GET
/
api
/
v1
/
envelopes
/
{id}
/
status
Check signing status
curl --request GET \
--url https://api.atlaswork.ai/api/v1/envelopes/{id}/status \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.atlaswork.ai/api/v1/envelopes/{id}/status', 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}/status"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"envelopeId": "<string>",
"status": "draft",
"detectionStatus": "none",
"terminal": true,
"currentParticipantId": "<string>",
"participants": [
{
"id": "<string>",
"orderIndex": 1,
"name": "<string>",
"status": "pending",
"isCurrent": true,
"signedAt": "2023-11-07T05:31:56Z",
"declinedAt": "2023-11-07T05:31:56Z",
"lastViewedAt": "2023-11-07T05:31:56Z"
}
],
"signedCount": 1,
"totalParticipants": 1,
"lastEventAt": "2023-11-07T05:31:56Z",
"summary": "<string>",
"documentReceived": true
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"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
Current signing progress
Available options:
draft, detecting, review, in_progress, completed, declined, voided, expired Available options:
none, running, succeeded, failed, skipped Show child attributes
Show child attributes
Required range:
x >= 0Required range:
x >= 0