Skip to main content
POST
/
members
/
invites
Invite a member
curl --request POST \
  --url https://productlane.com/api/v2/members/invites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "name": "<string>"
}
'
{
  "id": "<string>",
  "email": "<string>",
  "name": "<string>",
  "invited_by_id": "<string>",
  "created_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://productlane.mintlify.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string<email>
required
Maximum string length: 254
name
string
required
Required string length: 1 - 255
role
enum<string>
required

Role granted on acceptance. One of ADMIN, USER, VIEWER.

Available options:
ADMIN,
USER,
VIEWER

Response

Successful response

id
string
required
email
string
required
name
string | null
required
role
enum<string>
required
Available options:
ADMIN,
USER,
VIEWER
state
enum<string>
required
Available options:
PENDING,
ACCEPTED
invited_by_id
string | null
required
created_at
string
required