Get Organization​
GET
/bridge-payment/organizations/{id}
Get detailed information about a specific organization. User must be a member of the organization to access it. Returns 403 if not a member to prevent organization enumeration.
Authorizations​
SessionAuth
Session ID from Flowless authentication
TypeAPI Key (header: X-Session-ID)
Parameters​
Path Parameters
id*
Organization ID
Typestring
RequiredExample
"org_abc123"Responses​
Organization details retrieved successfully
application/json
JSON
{
"success": true,
"data": {
"id": "org_abc123",
"name": "Acme Corporation",
"owner_user_id": "user_xyz789",
"business_phone": "+1-555-0123",
"tax_id": "12-3456789",
"address": "123 Main St, San Francisco, CA 94105",
"created_at": "string",
"updated_at": "string",
"your_role": "owner"
}
}