cURL
curl --request POST \ --url https://apidev.lindo.ai/v1/workspace/website/{website_id}/team \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "team@example.com", "role": "Editor" } '
{ "success": true, "result": { "member_id": "member_abc123", "email": "team@example.com", "role": "Editor", "created_date": "2024-01-15T10:30:00Z" } }
Adds a team member to a website with Editor or Commenter role.
Enter your API key (starts with lindo_sk_)
Unique identifier of the website
"website_abc123"
Email address of the team member to add
"team@example.com"
Role for the team member
Editor
Commenter
"Editor"
Team member added successfully
Indicates the operation was successful
true
Show child attributes
Was this page helpful?