Skip to main content
POST
/
v1
/
projects
/
{projectId}
/
members
Add Project Member
curl --request POST \
  --url https://api.anchorbrowser.io/v1/projects/{projectId}/members \
  --header 'Content-Type: application/json' \
  --header 'anchor-api-key: <api-key>' \
  --data '
{
  "email": "jsmith@example.com"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "email": "<string>",
  "added_at": "2023-11-07T05:31:56Z",
  "added_by": "<string>"
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

projectId
string
required

Body

application/json
email
string<email>
required

Response

Member added successfully.

id
string
name
string | null
email
string | null
added_at
string<date-time> | null
added_by
string | null