Skip to main content
GET
https://app.usatimbre.com
/
api
/
profile
/
{profile_id}
curl -X GET "https://app.usatimbre.com/api/profile/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Juan Pérez",
  "email": "juan@example.com",
  "phone_number": "+525512345678",
  "org_id": "org_123456",
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-20T14:45:00Z",
  "is_admin": false,
  "credits_remaining": 50
}

Overview

Retrieve profile details using the profile’s unique UUID identifier.

Path Parameters

profile_id
string
required
The UUID of the profile to retrieve. Example: 550e8400-e29b-41d4-a716-446655440000

Response

id
string
Unique profile identifier (UUID)
name
string
Profile name
email
string
Email address
phone_number
string
Phone number
org_id
string
Organization ID the profile belongs to
created_at
string
ISO 8601 timestamp of when the profile was created
updated_at
string
ISO 8601 timestamp of when the profile was last updated
is_admin
boolean
Whether the profile has admin privileges
credits_remaining
number
Number of invoice credits remaining
curl -X GET "https://app.usatimbre.com/api/profile/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Juan Pérez",
  "email": "juan@example.com",
  "phone_number": "+525512345678",
  "org_id": "org_123456",
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-20T14:45:00Z",
  "is_admin": false,
  "credits_remaining": 50
}