Members
Propose removing members
[Admin Only] Creates a proposal to remove members from the organization. Only admin API members can make requests to this endpoint.
POST
cURL
Authorizations
API key authentication. Include your API key in the Authorization header.
Headers
Idempotency key for safely retrying mutation requests.
Body
application/json
List of members to remove
Response
Member removal proposal created
Example:
{
"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" }
]
}
}cURL