Skip to main content
DELETE
/
settings
/
team
/
{userId}
Delete Team Member
curl --request DELETE \
  --url https://staging-api.puppetvendors.com/settings/team/{userId} \
  --header 'x-access-token: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt

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

V2 Preview — This endpoint is part of the V2 API preview. Breaking changes may occur.

Overview

Remove a team member from the vendor account. The team member immediately loses access. This action cannot be undone.

Use Cases

  • Off-board departing team members
  • Revoke access for inactive users
  • Remove accidentally created accounts

Path Parameters

userId
string
required
The team member’s user ID.

Response

200
{
  "success": true
}

Example

curl -X DELETE "https://staging-api.puppetvendors.com/settings/team/665a1b2e3d98f0001a2b3c81" \
  -H "x-access-token: YOUR_VENDOR_TOKEN"