Skip to content

Add Organization Member​

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

Add a new member to the organization. Only the organization owner can add members. The user must exist in the system (identified by email) and will be automatically added if found. Cannot add users as 'owner' role.

Authorizations​

SessionAuth

Session ID from Flowless authentication

TypeAPI Key (header: X-Session-ID)

Parameters​

Path Parameters

id*

Organization ID

Typestring
Required
Example"org_abc123"

Request Body​

application/json
JSON
{
"email": "[email protected]",
"role": "billing"
}

Responses​

Member added successfully

application/json
JSON
{
"success": true,
"data": {
"id": "orguser_789",
"organization_id": "org_abc123",
"user_id": "user_new123",
"role": "billing",
"created_at": "string",
"updated_at": "string"
},
"message": "Member added successfully"
}

Playground​

Server
Authorization
Variables
Key
Value
Body

Samples​

Powered by VitePress OpenAPI