Forgot Password
Bulk Imports
Customer Users
Business
Business Details
Business
Get Business By ID
Retrieve details for a particular business associated with the businessID provided
GET
/
businesses
/
{businessID}
Copy
curl --request GET \
--url https://api.joinworth.com/case/api/v1/businesses/{businessID} \
--header 'Authorization: Bearer <token>'
Copy
{
"status": "success",
"message": "Business fetched successfully",
"data": {
"id": "346ddd58-8850-4b4c-9781-501630eea4e6",
"name": "dsfds",
"tin": "123123123",
"address_apartment": null,
"address_line_1": "123, William Street, Manhattan",
"address_line_2": null,
"address_city": "New York",
"address_state": "New York",
"address_postal_code": "10038",
"address_country": "United States",
"created_at": "2024-01-24T10:23:44.602Z",
"created_by": "725b5e6c-022a-4207-a9ef-bbc08acca549",
"updated_at": "2024-02-06T13:04:08.508Z",
"updated_by": "725b5e6c-022a-4207-a9ef-bbc08acca549",
"mobile": null,
"official_website": null,
"public_website": null,
"social_account": null,
"status": "ACTIVE",
"subscription": {
"status": "NOT_SUBSCRIBED",
"created_at": "2024-02-08T14:57:38.903Z",
"updated_at": "2024-02-08T14:57:38.903Z"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Examples:
"fd9021b0-8056-4ffc-9191-23ab4b9ca906"
Query Parameters
Examples:
true
Response
200
application/json; charset=utf-8
OK
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://api.joinworth.com/case/api/v1/businesses/{businessID} \
--header 'Authorization: Bearer <token>'
Copy
{
"status": "success",
"message": "Business fetched successfully",
"data": {
"id": "346ddd58-8850-4b4c-9781-501630eea4e6",
"name": "dsfds",
"tin": "123123123",
"address_apartment": null,
"address_line_1": "123, William Street, Manhattan",
"address_line_2": null,
"address_city": "New York",
"address_state": "New York",
"address_postal_code": "10038",
"address_country": "United States",
"created_at": "2024-01-24T10:23:44.602Z",
"created_by": "725b5e6c-022a-4207-a9ef-bbc08acca549",
"updated_at": "2024-02-06T13:04:08.508Z",
"updated_by": "725b5e6c-022a-4207-a9ef-bbc08acca549",
"mobile": null,
"official_website": null,
"public_website": null,
"social_account": null,
"status": "ACTIVE",
"subscription": {
"status": "NOT_SUBSCRIBED",
"created_at": "2024-02-08T14:57:38.903Z",
"updated_at": "2024-02-08T14:57:38.903Z"
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.