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
}
}Retrieve all cases associated with a particular customerID.
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
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK
Show child attributes
Show child attributes
Was this page helpful?