Skip to main content
GET
https://app.usatimbre.com
/
api
/
organizations
/
{org_id}
/
members
/
{rfc}
curl -X GET "https://app.usatimbre.com/api/organizations/org_123456/members/XAXX010101000" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Juan Pérez",
  "email": "[email protected]",
  "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-20T14:45:00Z"
}

Overview

Retrieve details for a specific member of an organization using their RFC or profile ID.

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

Response

id
string
Unique profile identifier (UUID)
name
string
Member name
email
string
Email address
phone_number
string
Phone number
tax_id
string
RFC (Mexican tax ID)
org_id
string
Organization ID
is_admin
boolean
Whether the member has admin privileges
credits_remaining
number
Number of invoice credits remaining
created_at
string
ISO 8601 timestamp of when the member joined
updated_at
string
ISO 8601 timestamp of last update
curl -X GET "https://app.usatimbre.com/api/organizations/org_123456/members/XAXX010101000" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Juan Pérez",
  "email": "[email protected]",
  "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-20T14:45:00Z"
}