List Team Members
Get all members of your organization with their roles and permissions.
team.view
GET
/v1/teamExample Request
curl
curl "https://proforms.io/api/v1/team" \
-H "Authorization: Bearer pf_your_api_key"Response
200 OK
{
"success": true,
"data": {
"members": [
{
"id": "u_owner1",
"name": "Ryan Kunz",
"email": "ryan@example.com",
"role": "owner",
"permissions": null,
"status": "active",
"lastLoginAt": "2026-02-17T08:00:00.000Z",
"createdAt": "2026-01-01T10:00:00.000Z"
},
{
"id": "u_editor1",
"name": "Sarah Chen",
"email": "sarah@example.com",
"role": "editor",
"permissions": [
"forms.view",
"forms.edit",
"submissions.view"
],
"status": "active",
"lastLoginAt": "2026-02-16T15:30:00.000Z",
"createdAt": "2026-02-01T10:00:00.000Z"
}
]
}
}