TypeScript
const options = {method: 'DELETE'}; fetch('http://localhost:4005/v1/arc/projects/:id/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>" } }
Remove a user from the project. Requires project admin role. Cannot remove the last admin.
Member removed successfully
Was this page helpful?