Skip to main content
POST
/
service-of-notice
/
attachments
/
create
Create service attachment
curl --request POST \
  --url https://cases.platform.arb.inc/service-of-notice/attachments/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "caseID": "2025-08-00292",
  "url": "https://example.com/settlement"
}
'
{
  "attachmentID": "2720f109-0caf-4c62-af22-5d08c853711c"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
caseID
string
required
Example:

"2025-08-00292"

url
string<uri>
required
Example:

"https://example.com/settlement"

Response

200 - application/json

Successfully created attachment

attachmentID
string<uuid>
Example:

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