Skip to main content
DELETE
/
v1
/
atlas
/
organizations
/
:id
/
projects
/
:projectId
/
members
/
:userId
Remove project member
const options = {method: 'DELETE'};

fetch('http://localhost:4010/v1/atlas/organizations/:id/projects/:projectId/members/:userId', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": false,
  "error": {
    "code": "<string>",
    "message": "<string>",
    "details": {}
  },
  "meta": {
    "requestId": "<string>",
    "timestamp": "<string>"
  }
}

Path Parameters

id
string
required
projectId
string
required
userId
string
required

Response

Member removed successfully