Profiles
Retrieves LinkedIn member profile information.
Select
NOTE: The r_basicprofile scope is required to access this view.
When querying Profiles with a criteria, Id is required and must be included in the criteria. The OR logical operator is not supported in the criteria for columns other than Id.
The = and IN operators are fully supported server-side for the Id column. Refer to the query examples below:
SELECT * FROM Profiles WHERE Id = 'XXXXXXXXXX';
SELECT * FROM Profiles WHERE Id IN ('XXXXXXXXXX', 'YYYYYYYYYY');
If no criteria is specified, as shown in the query below, the view returns the authenticated user's LinkedIn profile data.
SELECT * FROM Profiles;
Columns
| Name | Type | References | Description |
| Id [KEY] | String | The unique identifier of the member's profile. | |
| FirstName | String | The first name of the member's profile. | |
| LastName | String | The last name of the member's profile. | |
| MaidenName | String | The maiden name of the member's profile. | |
| Headline | String | The headline of the member's profile. Often this is the job title. | |
| VanityName | String | The vanity name of the member's profile. | |
| PictureAssetURN | String | The digital media asset URN for the picture of the member's profile. | |
| URN | String | URN of the member's profile. |