[Admin Only] Creates a proposal to remove members from the organization. Only admin API members can make requests to this endpoint.
API key authentication. Include your API key in the Authorization header.
Idempotency key for safely retrying mutation requests.
List of members to remove
Member removal proposal created
{
"id": "prop_mem_remove_123",
"resourceType": "members",
"action": "remove",
"signatureStatus": "approvalReady",
"executionStatus": "completed",
"threshold": 2,
"approvals": [],
"rejections": [],
"createdAt": "2026-01-18T00:00:00.000Z",
"expiresAt": "2026-01-25T00:00:00.000Z",
"data": {
"items": [
{
"id": "mem_456",
"name": "Alice",
"type": "user",
"walletAddress": "0xabc..."
},
{
"id": "mem_789",
"name": "Bob",
"type": "user",
"walletAddress": "0xdef..."
}
]
},
"result": {
"resolution": "approved",
"resources": [
{ "type": "member", "id": "mem_456" },
{ "type": "member", "id": "mem_789" }
]
}
}