Skip to content

List Organizations​

GET
/bridge-payment/organizations

Get all organizations where the authenticated user is a member. Returns organization details along with the user's role in each organization. Supports pagination for large organization lists.

Authorizations​

SessionAuth

Session ID from Flowless authentication

TypeAPI Key (header: X-Session-ID)

Parameters​

Query Parameters

page

Page number for pagination

Typeinteger
Minimum1
Default1
limit

Number of items per page (max 100)

Typeinteger
Minimum1
Maximum100
Default20

Responses​

List of organizations retrieved successfully

application/json
JSON
{
"success": true,
"data": [
{
"id": "org_abc123",
"name": "Acme Corporation",
"business_email": "[email protected]",
"created_at": "string",
"role": "owner"
}
],
"meta": {
"pagination": {
"total": 0,
"page": 0,
"pageSize": 0,
"totalPages": 0
}
}
}

Playground​

Server
Authorization
Variables
Key
Value

Samples​

Powered by VitePress OpenAPI