REST APIPOST

Connect Links

Create a link that lets a client connect their social accounts to your workspace without an AdaptlyPost login, and revoke it when you are done.

Permission: accounts.manage. See Roles and permissions.

Only an Admin key holds accounts.manage, so only Admin keys can create or revoke connect links.

A connect link opens a page where someone without an AdaptlyPost account connects their social accounts to your workspace. Send the url to a client, they approve each platform, and the accounts appear in Social Accounts like any other.

POST /api/v1/connect-links

No request body. Returns 201:

{
  "url": "https://adaptlypost.com/connect/9f2c4e71b0d8...",
  "token": "9f2c4e71b0d8...",
  "expiresAt": "2026-10-04T09:30:00.000Z"
}
FieldDescription
urlThe page to send. Anyone who has it can connect accounts to this workspace while the link works
tokenIdentifies the link. Keep it to revoke the link later
expiresAtWhen the link stops working, 7 days after it was created

A link also stops working as soon as it is revoked, or when the member who created it can no longer manage accounts in the workspace.

DELETE /api/v1/connect-links/:token

Revokes the link at once. Accounts already connected through it stay connected. Returns { "success": true }, or 404 when no link in this workspace has that token.