List Industries

๐Ÿงพ List Industries

Endpoint: GET /api/v3/industries

Auth Required: โœ… Yes (Bearer Token)


๐Ÿ“ Description

Retrieves a list of industries that can be associated with companies, visits, or accounts. Commonly used for segmentation, filtering, or reporting based on business sectors.


๐Ÿ” Query Parameters

Parameter Type Required Default Description
includeInactive boolean No โ€” If true, includes inactive industries.
languageId integer No 1 ID for localized industry names.

๐Ÿ“ค Request Example

GET https://api.briefingedge.com/api/v3/industries?includeInactive=false&languageId=1 Authorization: Bearer <token>  

โœ… Success Response (200 OK)

Returns an array of Industry objects.

Example:

[  {    "IndustryID": 1,    "Name": "Healthcare",    "IsActive": true  },  {    "IndustryID": 2,    "Name": "Finance",    "IsActive": true  } ]  

โŒ Error Responses

Code Message Description
401 Unauthorized Missing or invalid bearer token.
500 Internal Server Error Unexpected server-side failure.