Skip to main content
GET
https://app.usatimbre.com
/
api
/
timbre
/
organization-members
curl -X GET "https://app.usatimbre.com/api/timbre/organization-members?org_id=org_123456" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "members": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Juan Pérez",
      "email": "[email protected]",
      "tax_id": "XAXX010101000",
      "is_admin": true,
      "invoice_count": 25
    },
    {
      "id": "550e8400-e29b-41d4-a716-446655440001",
      "name": "María García",
      "email": "[email protected]",
      "tax_id": "XAXX010101001",
      "is_admin": false,
      "invoice_count": 12
    }
  ]
}

Overview

Retrieve a list of all members belonging to a specific organization.

Query Parameters

org_id
string
required
The unique identifier of the organization

Response

Returns an array of organization members.
members
array
Array of member objects
curl -X GET "https://app.usatimbre.com/api/timbre/organization-members?org_id=org_123456" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "members": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Juan Pérez",
      "email": "[email protected]",
      "tax_id": "XAXX010101000",
      "is_admin": true,
      "invoice_count": 25
    },
    {
      "id": "550e8400-e29b-41d4-a716-446655440001",
      "name": "María García",
      "email": "[email protected]",
      "tax_id": "XAXX010101001",
      "is_admin": false,
      "invoice_count": 12
    }
  ]
}