Remove Organization Member
DELETE
/bridge-payment/organizations/{id}/members/{memberId}
Remove a member from the organization. Only the organization owner can remove members. Cannot remove the owner or yourself (use leave endpoint instead).
Authorizations
SessionAuth
Session ID from Flowless authentication
TypeAPI Key (header: X-Session-ID)
Parameters
Path Parameters
id*
Organization ID
Typestring
RequiredExample
"org_abc123"memberId*
Member ID (organization_users.id)
Typestring
RequiredExample
"orguser_789"Responses
Member removed successfully
application/json
JSON
{
"success": true,
"message": "Member removed successfully"
}