Power BI Connector for LinkedIn

Build 25.0.9454

Organizations

Query information about any LinkedIn organization, regardless of whether the individual is an administrator for that organization.

Select

This view differs from CompanyDetails, because it only exposes Non-Admin Organization data. You can use it whether or not you own the organization. If you are an Organization Administrator and need access to full data beyond the Non-Admin set, use CompanyDetails instead.

You must specify either the Id or VanityName column in the criteria to use this view. If you specify both columns with an AND clause, the Id criterion takes precedence over VanityName. Additionally, you cannot use the OR logical operator with criteria that involve columns other than Id or VanityName.

The = and IN operators are fully supported server-side for the Id column. Refer to the query examples below:

SELECT * FROM Organizations WHERE Id = '4975021';
SELECT * FROM Organizations WHERE Id IN ('4975021', '6554901');

The = operator is fully supported server-side for the VanityName column, while the IN operator is processed client-side. The values specified in the criteria are case-insensitive. Refer to the query examples below:

SELECT * FROM Organizations WHERE VanityName = 'cdatasoftware';
SELECT * FROM Organizations WHERE VanityName IN ('CDataSoftware', 'OtherOrganization');

Columns

Name Type References Description
Id [KEY] String The identifier of the organization.
Name String The name of the organization.
VanityName String The vanity name of the organization.
Website String The organization's website.
PrimaryType String The primary type of the organization.
LogoAssetURN String The digital media asset URN for the organization's logo.
HierarchyClassification String The classification for the school's hierarchy in case the organization is a school.
SchoolType String The type of school in case the organization is a school.
YearLevel String The classification of the length of the school's educational programs in case the organization is a school.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 25.0.9454