Public organization search
Search organizations by name and type without authentication. Returns minimal info (id, name, city). Requires at least 2 characters. Used for pre-auth flows.
Search organizations by name and type without authentication. Returns minimal info (id, name, city). Requires at least 2 characters. Used for pre-auth flows.
Query Parameters
q?string
type?string
Response Body
application/json
curl -X GET "https://example.com/organization/public-search"{ "organizations": [ { "id": "string", "name": "string", "city": "string" } ]}Empty
Empty
Approve or reject a join request PATCH
Approve or reject a pending join request. Approved users become staff members. Sends a notification to the requester. Owner only.
Redeem a join code to join an organization POST
Redeems a shareable join code and adds the current user as a member of the organization. Returns 404 with error 'invalid_code' for unknown codes so clients can fall back to invitation-id acceptance.