Skip to main content
DELETE
https://app.usatimbre.com
/
api
/
organizations
/
{org_id}
/
members
/
{rfc}
curl -X DELETE "https://app.usatimbre.com/api/organizations/org_123456/members/XAXX010101000" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "success": true,
  "message": "Member removed from organization successfully"
}

Overview

Remove a member from an organization. This does not delete the profile entirely, just removes the organization association.
This action removes the member’s access to the organization. The member’s profile and any associated invoices remain in the system.

Path Parameters

org_id
string
required
The unique identifier of the organization
rfc
string
required
The RFC (Mexican tax ID) or profile UUID of the member to remove

Response

Returns a success message on successful removal.
success
boolean
Whether the removal was successful
message
string
Confirmation message
curl -X DELETE "https://app.usatimbre.com/api/organizations/org_123456/members/XAXX010101000" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "success": true,
  "message": "Member removed from organization successfully"
}