Checking authentication...

Organization

Access organization information and search users

2 tools

Get Organization

Read Idempotent

POST /v1/tools/tape/getOrganization

Get information about the current Tape organization including org_id, name, plan tier, and activity count. No parameters required. Useful for verifying the connected organization and understanding account limits.

Request

curl -X POST https://api.syncello.io/v1/tools/tape/getOrganization \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response

{
  "org_id": 44001,
  "active_user_id": 4820193,
  "name": "Acme Corp",
  "description": null,
  "slug": "acme",
  "created_on": "2024-01-25 18:12:48",
  "website": "www.acme.example.com",
  "location": "Austin, Texas",
  "url": "https://tapeapp.com/acme",
  "plan": "free",
  "activity_count": 6181
}

Try It

Try it

Sign in to execute this tool

Search Users

Read Idempotent

POST /v1/tools/tape/searchUsers

Search for users in the Tape organization by name or email. Returns user_id, name, and email for matching users. Use this to find user_ids before setting user fields in records or assigning tasks. If no query is provided, returns all organization users.

Parameters

NameTypeRequiredDescription
querystringoptionalOptional search term to filter users by name or email (case-insensitive). If omitted, returns all org users.

Request

curl -X POST https://api.syncello.io/v1/tools/tape/searchUsers \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response

[
  {
    "user_id": 4820193,
    "name": "Jordan Lee",
    "email": "jordan@example.com"
  },
  {
    "user_id": 4820194,
    "name": "Sam Rivera",
    "email": "sam@example.com"
  }
]

Try It

Try it

Sign in to execute this tool