Skip to main content
DELETE
/
api
/
v1
/
websites
/
{website_id}
/
members
/
{user_id}
Remove Website Member
curl --request DELETE \
  --url https://api.athenahq.ai/api/v1/websites/{website_id}/members/{user_id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "User removed from website"
}

Documentation Index

Fetch the complete documentation index at: https://docs.athenahq.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for authentication. You can create one here.

Path Parameters

website_id
string<uuid>
required

The unique identifier of the website

user_id
string<uuid>
required

The unique identifier of the target user

Response

Member removed successfully

success
boolean
required
Example:

true

message
string
required
Example:

"User removed from website"