LateLate API
Management

Invites

Send and manage team invitations for collaborative social media management


Create a team member invite token

Generate a secure invite link to grant team members access to your profiles. Invites expire after 7 days and are single-use.

POST
/v1/invite/tokens
AuthorizationBearer <token>

API key authentication - use your Late API key as a Bearer token

In: header

scopestring

'all' grants access to all profiles, 'profiles' restricts to specific profiles

Value in"all" | "profiles"
profileIds?array<string>

Required if scope is 'profiles'. Array of profile IDs to grant access to.

Response Body

application/json

application/json

curl -X POST "https://getlate.dev/api/v1/invite/tokens" \  -H "Content-Type: application/json" \  -d '{    "scope": "profiles",    "profileIds": [      "64f0a1b2c3d4e5f6a7b8c9d0",      "64f0a1b2c3d4e5f6a7b8c9d1"    ]  }'
{
  "token": "inv_abc123def456ghi789",
  "scope": "profiles",
  "invitedProfileIds": [
    "64f0a1b2c3d4e5f6a7b8c9d0",
    "64f0a1b2c3d4e5f6a7b8c9d1"
  ],
  "expiresAt": "2024-11-08T10:30:00Z",
  "inviteUrl": "https://getlate.dev/invite/inv_abc123def456ghi789"
}
Empty
{
  "error": "Unauthorized"
}
Empty