Skip to main content
POST
/
service-of-notice
/
mailings
/
list
List mailings for a case
curl --request POST \
  --url https://cases.platform.arb.inc/service-of-notice/mailings/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-09-00123"
}
'
{
  "mailings": [
    {
      "id": "e7f6d4d1-9c7a-4c20-9d18-bb3a2c9b8b10",
      "created": "2025-09-15T14:32:10Z",
      "mailType": "sealedMailer",
      "status": "Waiting to be printed and prepared for delivery.",
      "recipient": {
        "name": "Jane Doe",
        "address": "123 Main St",
        "address2": "Apt 4B",
        "city": "Springfield",
        "state": "IL",
        "zipcode": "62704"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required

Case to get the mailings for.

Required string length: 1 - 50
Example:

"2025-09-00123"

Response

Mailings successfully retrieved.

mailings
object[]

List of mailings in the response.