Skip to main content
GET
/
cases
/
{case_id}
/
faxes
/
{fax_id}
/
receipt
Get fax delivery receipt
curl --request GET \
  --url https://api.example.com/v1/cases/{case_id}/faxes/{fax_id}/receipt \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "fax_id": "<string>",
    "confirmation_number": "<string>",
    "pages_sent": 123,
    "duration_seconds": 123,
    "status": "confirmed",
    "remote_station_id": "<string>",
    "timestamp": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

case_id
string
required

Unique case identifier (ULID format).

fax_id
string
required

Response

Fax receipt.

data
object