Check Envelope Status

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

Method
GET

URL

/api/v1/mailbox/{uuid}

Authorization

Bearer {token}

content-type

application/json

mailboxUuid

{uuid}

q

query parameter

archived

boolean (default false)

expireDatePeriod

‘expirationDate’ period

label

{uuid},{uuid}

limit

integer (default 25)

offset

integer (number of envelopes to skip, default 0)

receiveDatePeriod

‘receiveDate’ period

scope

inbox,outbox

sender

{uuid}

sort

asc/desc

status

DRAFT,WAITING,COMPLETED,EXPIRED,CANCELLED

subject

string

template

{uuid},{uuid}

In response you will get short information about envelopes from this mailbox which match to filter criteria. For more information on this request was used filter by template.

Request URL example

https://api.platform_address_here/api/v1/mailbox/837bc65e-4818-48f5-a933-2d00b24b6e12?receiveDatePeriod=&expireDatePeriod=&params=%5Bobject%20Object%5D&scope=outbox&archived=false&period=null&sender=&subject=&template=e5705211-51d1-4c34-9429-c537038b3c44&expireperiod=null&label=&limit=20&offset=0&sort=desc

Response example: Status code: 200 OK

Response status codes

Code
Description

200

Success

401

Not authorized

403

Forbidden

404

Not found

Request for full envelope with template

Method
GET

URL

/api/v1/mailbox/{uuid}

Authorization

Bearer {token}

content-type

application/json

mailboxUuid

{uuid}

UUID

{uuid}

In response you will get full envelope and template.

Response example: Status code: 200 OK

Response status codes

Code
Description

200

Success

401

Not authorized

403

Forbidden

404

Not found

Last updated