Skip to main content
POST
/
service-of-notice
/
mailings
/
create
Create service mailing
curl --request POST \
  --url https://cases.platform.arb.inc/service-of-notice/mailings/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00292",
  "mailTypeID": "certified_mail",
  "address": {
    "line1": "123 Main St",
    "line2": "Apt 4",
    "city": "Springfield",
    "state": "IL",
    "zip": "62701"
  }
}
'
{
  "mailingID": "2720f109-0caf-4c62-af22-5d08c853711c"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required
Example:

"2025-08-00292"

mailTypeID
string
required
Example:

"certified_mail"

address
object
required

Response

201 - application/json

Successfully created mailing

mailingID
string<uuid>
Example:

"2720f109-0caf-4c62-af22-5d08c853711c"