Method to follow a company.
array
follow
(string $id)
-
string
$id: The unique identifier for a company.
Method to retrieve companies using a company ID, a universal name, or an email domain.
array
getCompanies
([integer $id = null], [string $name = null], [string $domain = null], [string $fields = null])
-
integer
$id: The unique internal numeric company identifier.
-
string
$name: The unique string identifier for a company.
-
string
$domain: Company email domains.
-
string
$fields: Request fields beyond the default ones.
Method to get a list of companies the current member is following.
array
getFollowed
([string $fields = null])
-
string
$fields: Request fields beyond the default ones.
Method to get a collection of suggested companies for the current user.
array
getProducts
(string $id, [string $fields = null], [integer $start = 0], [integer $count = 0])
-
string
$id: The unique identifier for a company.
-
string
$fields: Request fields beyond the default ones.
-
integer
$start: Starting location within the result set for paginated returns.
-
integer
$count: The number of results returned.
Method to get a collection of suggested companies for the current user.
array
getSuggested
([string $fields = null], [integer $start = 0], [integer $count = 0])
-
string
$fields: Request fields beyond the default ones.
-
integer
$start: Starting location within the result set for paginated returns.
-
integer
$count: The number of results returned.
Method to read shares for a particular company .
array
getUpdates
(string $id, [string $type = null], [integer $count = 0], [integer $start = 0])
-
string
$id: The unique company identifier.
-
string
$type: Any valid Company Update Type from the table: https://developer.linkedin.com/reading-company-updates.
-
integer
$count: Maximum number of updates to return.
-
integer
$start: The offset by which to start Network Update pagination.
Method to search across company pages.
array
search
([string $fields = null], [string $keywords = null], [boolean $hq = false], [string $facets = null], [array $facet = null], [integer $start = 0], [integer $count = 0], [string $sort = null])
-
string
$fields: Request fields beyond the default ones.
-
string
$keywords: Members who have all the keywords anywhere in their profile.
-
boolean
$hq: Matching companies by the headquarters location. When this is set to "true" and a location facet is used, this restricts returned companies to only those whose headquarters resides in the specified location.
-
string
$facets: Facet buckets to return, e.g. location.
-
array
$facet: Array of facet values to search over. Contains values for location, industry, network, company-size, num-followers-range and fortune, in exactly this order, null must be specified for an element if no value.
-
integer
$start: Starting location within the result set for paginated returns.
-
integer
$count: The number of results returned.
-
string
$sort: Controls the search result order. There are four options: relevance, relationship, followers and company-size.
Method to unfollow a company.
array
unfollow
(string $id)
-
string
$id: The unique identifier for a company.
Inherited Methods
Inherited From JLinkedinObject
JLinkedinObject::__construct()
JLinkedinObject::booleanToString()
JLinkedinObject::getOption()
JLinkedinObject::setOption()