TypeScript
const options = {method: 'GET'}; 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": true, "data": { "id": "<string>", "projectId": "<string>", "userId": "<string>", "role": "admin", "createdAt": "2023-11-07T05:31:56Z", "user": { "id": "<string>", "email": "<string>", "name": "<string>" } }, "meta": { "requestId": "<string>", "timestamp": "<string>" } }
Get a specific member of a project (admin access)
Project member details
true
Show child attributes
Was this page helpful?