GET
/
customers
/
{customerID}
/
businesses
/
{businessID}
/
related-businesses
curl --request GET \
  --url https://api.joinworth.com/case/api/v1/customers/{customerID}/businesses/{businessID}/related-businesses \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Related Businesses fetched successfully",
  "data": {
    "records": [
      {
        "id": "06605d1a-e2b6-4457-9471-2931d70ace7d",
        "name": "Track 3",
        "status": "VERIFIED",
        "created_at": "2025-06-17T05:16:48.479Z",
        "case_id": "74cde423-2195-4d91-978e-83c1934d68cb",
        "case_status": "ONBOARDING",
        "customer_id": "f3658084-98f7-40fd-a72f-f1bd13959bd6",
        "report_status": "DOWNLOAD_REPORT_UNAVAILABLE",
        "report_id": null,
        "report_created_at": null
      },
      {
        "id": "2c165365-e801-460b-b1a3-b28e13bd3dc4",
        "name": "Track 2",
        "status": "VERIFIED",
        "created_at": "2025-06-17T05:00:57.201Z",
        "case_id": "ad53cefb-0575-41ac-99de-a1e3c35496c6",
        "case_status": "AUTO_APPROVED",
        "customer_id": "f3658084-98f7-40fd-a72f-f1bd13959bd6",
        "report_status": "COMPLETED",
        "report_id": "e111b084-fb7a-4e71-849a-58bdb568701e",
        "report_created_at": "2025-06-17T07:09:29.688Z"
      },
      {
        "id": "c84efa5e-8638-4e39-b3cb-19c32915e816",
        "name": "Track 1",
        "status": "VERIFIED",
        "created_at": "2025-06-17T04:51:43.662Z",
        "case_id": "96a28307-9fa8-438e-bfb1-d329b2a2e668",
        "case_status": "AUTO_APPROVED",
        "customer_id": "f3658084-98f7-40fd-a72f-f1bd13959bd6",
        "report_status": "COMPLETED",
        "report_id": "35c7dbff-4e1e-451d-a86f-d6552ba2a1b4",
        "report_created_at": "2025-06-17T07:09:29.690Z"
      }
    ],
    "total_pages": 1,
    "total_items": 3
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

customerID
string
required
Example:

"44aed0e8-89ec-4307-8b5d-310f8964e5b5"

businessID
string
required
Example:

"fd9021b0-8056-4ffc-9191-23ab4b9ca906"

Response

200 - application/json; charset=utf-8

OK

The response is of type object.