Members

Permanently delete a member

Permanently and irreversibly deletes a member from the site. All of the member's access group memberships are cascade-deleted.

This action cannot be undone. Returns 204 No Content with an empty response body on success.

DELETE /members/{memberId}

Permanently delete a member

curl --request DELETE \
  --url 'https://api.sotion.so/api/v1/members/{MEMBERID}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'

No Body

Member deleted.

Authorizations

  • Authorization string required header

    Per-site API key (prefix: so_...). Each key is scoped to exactly one Sotion site — the site context is determined entirely by the key. No site ID is needed in any URL. Pass as: Authorization: Bearer so_...

Path Parameters

  • memberId string (uuid) required

    UUID of the member. Get member IDs from listMembers or createMember responses.

Response

  • X-RateLimit-Limit integer response header

    Maximum requests allowed in the current window.

  • X-RateLimit-Remaining integer response header

    Requests remaining in the current window.

  • X-RateLimit-Reset integer response header

    Unix timestamp (seconds) when the rate limit window resets.

  • X-Request-Id string (uuid) response header

    Unique request identifier for support and debugging.