Forgot Password
Bulk Imports
Customer Users
Business
Business Details
Cases
Get Customer Cases
Retrieve all cases associated with a particular customerID.
GET
/
customers
/
{customerID}
/
cases
curl --request GET \
--url https://api.joinworth.com/case/api/v1/customers/{customerID}/cases \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"message": "Success",
"data": {
"records": [
{
"id": "1919e44d-a542-450a-bbb2-e3db2e118be5",
"applicant_id": "35430fe0-ec96-46ef-9688-7d0ffe63be8b",
"created_at": "2024-02-14T05:45:10.183Z",
"business_name": "One Stop Furniture And Mattress",
"status_label": "ONBOARDING",
"applicant": {
"first_name": "John",
"last_name": "Doe"
},
"status": {
"id": 3,
"code": "ONBOARDING",
"label": "ONBOARDING"
}
}
],
"total_pages": 1,
"total_items": 1
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Examples:
"22f210e4-4455-4107-b132-97e8478546ea"
Response
200 - application/json; charset=utf-8
OK
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.joinworth.com/case/api/v1/customers/{customerID}/cases \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"message": "Success",
"data": {
"records": [
{
"id": "1919e44d-a542-450a-bbb2-e3db2e118be5",
"applicant_id": "35430fe0-ec96-46ef-9688-7d0ffe63be8b",
"created_at": "2024-02-14T05:45:10.183Z",
"business_name": "One Stop Furniture And Mattress",
"status_label": "ONBOARDING",
"applicant": {
"first_name": "John",
"last_name": "Doe"
},
"status": {
"id": 3,
"code": "ONBOARDING",
"label": "ONBOARDING"
}
}
],
"total_pages": 1,
"total_items": 1
}
}
Assistant
Responses are generated using AI and may contain mistakes.