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
Minimum
1Default
1limit
Number of items per page (max 100)
Typeinteger
Minimum
1Maximum
100Default
20Responses​
List of organizations retrieved successfully
application/json
JSON
{
"success": true,
"data": [
{
"id": "org_abc123",
"name": "Acme Corporation",
"created_at": "string",
"role": "owner"
}
],
"meta": {
"pagination": {
"total": 0,
"page": 0,
"pageSize": 0,
"totalPages": 0
}
}
}