- Force account selection when connecting a network: Most networks were silently reusing whatever account was already signed in on the browser, so connecting a second account often just re-authorized the first one. Pass a new
force_account_selectionflag toPOST /v1/social-networks/:network/auth-url(also available on theget_auth_urltool) to make the network show its account picker instead. Supported today for TikTok, Facebook, Instagram, YouTube, and Google Business Profile, with no effect on networks that don't support it, so you can send it unconditionally. Existing integrations are unaffected when the flag is left off. tenant_idnow included on every social account response: Connecting a Bluesky account without passingtenantIdpreviously created the account with a null tenant and gave no indication anything was missing, which could later cause tenant-filtered lookups to come back empty with no explanation. The Bluesky connect response, and account list responses, now consistently includetenant_idso you can catch a missing tenant immediately instead of debugging it downstream.- Fixed missing and duplicate accounts when paginating
GET /v1/social-accounts: Paging through accounts withlimit/offsetcould skip some accounts entirely and return others twice, especially on orgs with many accounts under active token refresh. Results are now returned in a stable order, so paginating through your accounts returns every account exactly once.