Skip to main content
GET
/
v1
/
arc
/
projects
/
:id
/
members
List project members
const options = {method: 'GET'};

fetch('http://localhost:4005/v1/arc/projects/:id/members', 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"
    }
  ],
  "meta": {
    "requestId": "<string>",
    "timestamp": "<string>"
  }
}

Path Parameters

id
string
required

Response

List of project members

success
enum<boolean>
required
Available options:
true
data
object[]
required
meta
object
required