For the complete documentation index, see llms.txt. This page is also available as Markdown.

Check Envelope Status

This document contains details for the /api/v1/mailbox/{uuid} endpoint, including filter parameters, request examples, response examples, and status codes.

Use this endpoint to list envelopes in a mailbox and filter them by status, sender, template, labels, dates, and scope. Use the returned envelope UUID to inspect one envelope, download related files, or request audit trail data.

Method

Endpoint

Method

GET

Request URL

/api/v1/mailbox/{uuid}

Headers

Authorization *

Bearer {token}

Content-Type

application/json

Path parameters

Parameter
Type
Required
Description

uuid

string

Yes

Target mailbox UUID

Headers

Header
Required
Description

Authorization

Yes

Bearer {token}

mailboxUuid

Yes

Current mailbox UUID

Query parameters

Parameter
Required
Description

q

No

Search query

archived

No

Archive flag. Default is false

expireDatePeriod

No

Expiration date period

label

No

Comma-separated label UUID list

limit

No

Maximum number of records. Default is 25

offset

No

Number of records to skip. Default is 0

receiveDatePeriod

No

Receive date period

scope

No

inbox or outbox

sender

No

Sender UUID

sort

No

asc or desc

status

No

DRAFT, WAITING, COMPLETED, EXPIRED, or CANCELLED

subject

No

Envelope subject

template

No

Comma-separated template UUID list

UUID

No

Envelope UUID. Return one full envelope with template when provided

Request example

Use this request to list outbox envelopes created from one template.

Response example

By default, the response returns envelope summaries.

Get full envelope with template

Pass the envelope UUID in the UUID query parameter to return the full envelope and the related template in one response.

Request example

Response example

Response status codes

Code
Description

200

Success

401

Not authorized

403

Forbidden

404

Not found

Last updated

Was this helpful?