Industries
Industries classify the industry sector of a lead. The list is seeded per organisation and referenced from Leads through the Industry navigation property.
Use the Datastore_Industry endpoint to query industries.
note
Datastore_Industry is the lead-side sector list. To classify an existing organisation's sector, use Branches (Datastore_Branch) instead.
Endpoints
List Industries
GET
/v1/odata/Datastore_IndustrySingle Industry
GET
/v1/odata/Datastore_Industry({id})Fields
Datastore Fields (inherited)
| Field | Type | Description |
|---|---|---|
Name | String | Display name — not populated for industries; read _Name or LocalizedName instead |
Code | String | Unique code identifier (Industry.1 … Industry.20) |
LocalizedName | String | JSON map of translations, e.g. {"en":"IT & Technology"} |
IsDefault | Boolean | Whether this is the default value |
Relationships
| Relationship | Target Entity | Cardinality | Description |
|---|---|---|---|
| Lead | Activity_Lead | 1:N | Leads classified under this industry |
Expanding Relationships
GET
/v1/odata/Datastore_Industry({id})?$expand=LeadNavigating Relationships
GET
/v1/odata/Datastore_Industry({id})/LeadFiltering Examples
GET
/v1/odata/Datastore_Industry?$filter=Code eq '{Code}'&$top={top}GET
/v1/odata/Datastore_Industry?$filter=contains(LocalizedName, '{LocalizedName}')&$top={top}GET
/v1/odata/Datastore_Industry?$filter=IsDefault eq {IsDefault}&$top={top}GET
/v1/odata/Datastore_Industry?$orderby=SortIndex asc&$top={top}&$count=trueCustom Query
Build your own OData query against Datastore_Industry. Open Run and edit the whole request inline — swap the entity set, change the $filter, or add $expand, $select, $orderby, $top, $skip. Type $ for suggestions; use ↺ Reset to restore this example.
GET
/v1/odata/Datastore_Industry?$top=10