Skip to main content
PATCH
https://app.usatimbre.com
/
api
/
organizations
/
{org_id}
/
members
/
{rfc}
curl -X PATCH "https://app.usatimbre.com/api/organizations/org_123456/members/XAXX010101000" \
  -H "Authorization: Bearer tmb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Member Name",
    "email": "updated@example.com",
    "phone_number": "+525512345678"
  }'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Updated Member Name",
  "email": "updated@example.com",
  "phone_number": "+525512345678",
  "tax_id": "XAXX010101000",
  "org_id": "org_123456",
  "is_admin": false,
  "credits_remaining": 50,
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-21T09:00:00Z"
}

Overview

Update a member’s profile information within an organization.

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

Request Body

name
string
Updated member name
email
string
Updated email address
phone_number
string
Updated phone number. Should include country code (e.g., +525512345678)

Response

Returns the updated member profile object.
id
string
Unique profile identifier (UUID)
name
string
Updated member name
email
string
Updated email address
phone_number
string
Updated phone number
updated_at
string
ISO 8601 timestamp of the update
curl -X PATCH "https://app.usatimbre.com/api/organizations/org_123456/members/XAXX010101000" \
  -H "Authorization: Bearer tmb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Member Name",
    "email": "updated@example.com",
    "phone_number": "+525512345678"
  }'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Updated Member Name",
  "email": "updated@example.com",
  "phone_number": "+525512345678",
  "tax_id": "XAXX010101000",
  "org_id": "org_123456",
  "is_admin": false,
  "credits_remaining": 50,
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-21T09:00:00Z"
}