Skip to main content
POST
/
service-of-notice
/
email
/
send
Send service via email
curl --request POST \
  --url https://cases.platform.arb.inc/service-of-notice/email/send \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00292",
  "email": "user@example.com"
}
'
"Service email sent successfully"

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required
Example:

"2025-08-00292"

email
string<email>
required
Example:

"user@example.com"

Response

200 - text/plain

Successfully sent service email

The response is of type string.

Example:

"Service email sent successfully"