Skip to main content
POST
/
_internal
/
transactions
/
set-case
Associate transaction with case
curl --request POST \
  --url https://billing.platform.arb.inc/_internal/transactions/set-case \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transactionID": "8f3d9b7a-2c1e-4f6a-9d8b-3e7f6a5c4d2b",
  "caseID": "2025-08-00292",
  "partyID": "claimant"
}
'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
transactionID
string
required

ID of the transaction to update

Example:

"8f3d9b7a-2c1e-4f6a-9d8b-3e7f6a5c4d2b"

caseID
string
required

Case ID to associate with the transaction (max 20 characters)

Example:

"2025-08-00292"

partyID
string

Optional party ID to associate with the transaction (max 20 characters)

Example:

"claimant"

Response

Transaction successfully updated

status
string
Example:

"ok"