Skip to main content
POST
/
cases
/
{id}
/
re-refer
Re-Refer Case
curl --request POST \
  --url https://api.casexchange.com/api/v1/cases/{id}/re-refer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "referentFirmId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "notes": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>",
    "description": "<string>",
    "referenceNumber": "<string>",
    "status": "draft",
    "caseType": "<string>",
    "jurisdiction": "<string>",
    "clientFirstName": "<string>",
    "clientLastName": "<string>",
    "clientEmail": "[email protected]",
    "clientPhone": "<string>",
    "referringFirmId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "referringFirm": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "caseStatusSubscriber": true
    },
    "referentFirmId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "referentFirm": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "caseStatusSubscriber": true
    },
    "notes": "<string>",
    "externalId": "<string>",
    "salesforceRecordId": "<string>",
    "salesforceObjectType": "<string>",
    "settlementAmount": 123,
    "attorneyFees": 123,
    "closureReason": "<string>",
    "source": "<string>",
    "createdById": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "createdBy": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "firstName": "<string>",
      "lastName": "<string>"
    },
    "lastUpdatedById": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "lastUpdatedBy": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "firstName": "<string>",
      "lastName": "<string>"
    },
    "statusUpdates": [
      {}
    ],
    "documents": [
      {}
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}
Re-refer a case to a different receiving firm. This creates a new referral record while preserving the original case history. Useful when a case is rejected, when routing rules change, or when you want to send the case to an alternative firm.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Body

application/json
referentFirmId
string<uuid>
required
notes
string | null

Response

Case re-referred

success
boolean
data
object