What changed
LinkedIn's August 2026 developer release notes say the top-level `location` field is being removed from the v2 Profile API responses returned by `/v2/me` and `/v2/people`. Partners that rely on the legacy location object may begin receiving an empty or null value. LinkedIn directs integrations to the already available `geoLocation` field and, when they need the human-readable location name, to request the decorated Bing Geo entity using a projection such as `geoLocation(geo~,autoGenerated)`. LinkedIn lists the change alongside its wider Bing Geo migration, but it is distinct from the August 31 Legacy Geo retirement for Ads Targeting that BTN already covers.
Why it matters
This is a quiet breaking change because an HTTP request can remain successful while application data disappears. Profile enrichment, CRM synchronization, compliance archives and other integrations that assume `location` always contains a display value can begin storing nulls, suppressing geography-based logic or rendering blank fields without throwing an obvious API error. Builders should therefore treat field-shape migrations as schema changes, not only watch for endpoint retirement or HTTP failures.
The replacement is a different structured field
LinkedIn is moving Profile API geography from the old top-level `location` representation to `geoLocation`, which references the platform's Bing Geo taxonomy. Applications that only need the structured value can use the new field directly; those that need the display name must request the decorated geo entity rather than expecting the old location string/object.
Old clients can fail silently
LinkedIn warns that partners relying on `location` may begin receiving an empty or null value. That means ordinary uptime monitoring can remain green while downstream records lose geography. Schema-level assertions and representative API-response tests are more useful than relying only on HTTP status codes.
This is not the same migration as Ads Legacy Geo
BTN's existing LinkedIn dossier #185 covers the 1,000-segment cap and the hard retirement of Legacy Geo identifiers used for Ads Targeting. The Profile API change affects `/v2/me` and `/v2/people` response fields instead. Both are part of LinkedIn's broader move toward Bing Geo, but they break different integrations in different ways.
Compliance integrations receive the same warning
LinkedIn's Compliance Program release notes independently call out the Profile `location` field sunset and the migration to `geoLocation`. That matters for partners that archive or monitor regulated-member activity because their stored profile snapshots and parsing logic can depend on the same legacy field.