Skip to main content
DELETE
/
projects
/
{projectId}
/
members
/
{teamMemberId}
Remove a member from the project
curl --request DELETE \
  --url https://api.lettermint.co/v1/projects/{projectId}/members/{teamMemberId} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Team member removed from project successfully."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

projectId
string
required
teamMemberId
string
required

Response

200 - application/json
message
enum<string>
required
Available options:
Team member removed from project successfully.