Skip to content

List Organization Members

GET
/bridge-payment/organizations/{id}/members

Get all members of an organization with their user details and roles. User must be a member of the organization to access this endpoint. Supports pagination and role filtering.

Authorizations

SessionAuth

Session ID from Flowless authentication

TypeAPI Key (header: X-Session-ID)

Parameters

Path Parameters

id*

Organization ID

Typestring
Required
Example"org_abc123"

Query Parameters

page

Page number for pagination

Typeinteger
Minimum1
Default1
limit

Number of items per page (max 100)

Typeinteger
Minimum1
Maximum100
Default20
role

Filter by role

Typestring
Valid values
"owner""admin""billing""member"

Responses

List of members retrieved successfully

application/json
JSON
{
"success": true,
"data": [
{
"id": "orguser_123",
"user_id": "user_xyz789",
"role": "owner",
"created_at": "string",
"user_name": "John",
"user_last_name": "Doe",
"user_email": "[email protected]",
"user_picture": "string"
}
],
"meta": {
"pagination": {
"total": 0,
"page": 0,
"pageSize": 0,
"totalPages": 0
}
}
}

Playground

Server
Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI