curl --request GET \
--url https://pullrule.com/api/2025-04/members \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"profile_photo_url": "<string>",
"created_at": 123,
"links": {
"pull_requests": "<string>"
}
}
]
}Return a list of the members from your organisation. The members are returned sorted by creation date, with the most recent member appearing first.
curl --request GET \
--url https://pullrule.com/api/2025-04/members \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"profile_photo_url": "<string>",
"created_at": 123,
"links": {
"pull_requests": "<string>"
}
}
]
}