Skip to main content
POST
/
api
/
v1
/
projects
/
{id}
/
members
Add project member
curl --request POST \
  --url https://neo.api.projectdiscovery.io/api/v1/projects/{id}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com"
}
'
{
  "member": {
    "added_at": "2023-11-07T05:31:56Z",
    "email": "jsmith@example.com",
    "added_by": "jsmith@example.com"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.neo.projectdiscovery.io/llms.txt

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

Authorizations

Authorization
string
header
required

JWT authentication token

Path Parameters

id
string
required

Project ID

Body

application/json
email
string<email>
required

Email of the user to add (must be a team member)

Response

Member added

member
object
required