curl --request GET \
--url https://api.joinworth.com/case/api/v1/businesses/{businessID} \
--header 'Authorization: Bearer <token>'{
"status": "success",
"message": "Business fetched successfully",
"data": {
"id": "346ddd58-8850-4b4c-9781-501630eea4e6",
"name": "Company Incorporated",
"tin": "123123123",
"mobile": "+11231231234",
"official_website": null,
"public_website": null,
"social_account": null,
"address_apartment": null,
"address_line_1": "123, Testing Street",
"address_line_2": null,
"address_city": "New York",
"address_state": "New York",
"address_postal_code": "10038",
"address_country": "US",
"created_at": "2024-01-24T10:23:44.602Z",
"created_by": "725b5eaa-022a-4207-a9ef-bbc08acca549",
"updated_at": "2024-02-06T13:04:08.508Z",
"updated_by": "725b5eaa-022a-4207-a9ef-bbc08acca549",
"status": "ACTIVE",
"industry": null,
"mcc_id": null,
"naics_id": null,
"naics_code": null,
"naics_title": null,
"mcc_code": null,
"mcc_title": null,
"external_id": "unique_external_guid_01",
"customer_id": "",
"is_monitoring_enabled": false,
"subscription": {
"status": "null",
"created_at": "null",
"updated_at": "null"
},
"business_names": [
{
"name": "Company Incorporated",
"is_primary": true
}
],
"business_addresses": [
{
"line_1": "123 Testing Road",
"apartment": null,
"city": "New York",
"state": "New York",
"country": "US",
"postal_code": "10038",
"mobile": "+11231231234",
"is_primary": true
}
]
}
}Retrieve details for a particular business associated with the businessID provided
curl --request GET \
--url https://api.joinworth.com/case/api/v1/businesses/{businessID} \
--header 'Authorization: Bearer <token>'{
"status": "success",
"message": "Business fetched successfully",
"data": {
"id": "346ddd58-8850-4b4c-9781-501630eea4e6",
"name": "Company Incorporated",
"tin": "123123123",
"mobile": "+11231231234",
"official_website": null,
"public_website": null,
"social_account": null,
"address_apartment": null,
"address_line_1": "123, Testing Street",
"address_line_2": null,
"address_city": "New York",
"address_state": "New York",
"address_postal_code": "10038",
"address_country": "US",
"created_at": "2024-01-24T10:23:44.602Z",
"created_by": "725b5eaa-022a-4207-a9ef-bbc08acca549",
"updated_at": "2024-02-06T13:04:08.508Z",
"updated_by": "725b5eaa-022a-4207-a9ef-bbc08acca549",
"status": "ACTIVE",
"industry": null,
"mcc_id": null,
"naics_id": null,
"naics_code": null,
"naics_title": null,
"mcc_code": null,
"mcc_title": null,
"external_id": "unique_external_guid_01",
"customer_id": "",
"is_monitoring_enabled": false,
"subscription": {
"status": "null",
"created_at": "null",
"updated_at": "null"
},
"business_names": [
{
"name": "Company Incorporated",
"is_primary": true
}
],
"business_addresses": [
{
"line_1": "123 Testing Road",
"apartment": null,
"city": "New York",
"state": "New York",
"country": "US",
"postal_code": "10038",
"mobile": "+11231231234",
"is_primary": true
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
"fd9021b0-8056-4ffc-9191-23ab4b9ca906"
true
Was this page helpful?