Skip to main content
curl -X GET https://api.dronebundle.com/v1/team/03144892-6021-705a-08f2-8e147cff3f28 \
  -H "Authorization: Bearer v1_your_api_key_here"
{
  "id": "03144892-6021-705a-08f2-8e147cff3f28",
  "email": "john@example.com",
  "first_name": "John",
  "last_name": "Smith",
  "role": "pilot",
  "title": "Senior Pilot",
  "phone_number": "+45 12345678",
  "profile_picture": null,
  "created": 1743400000000,
  "updated": 1743400000000
}
Requires an API key with read_only or full_access scope.

Path parameters

teamMemberId
string
required
The unique identifier of the team member.

Response

id
string
User ID.
email
string
Email address.
first_name
string | null
First name.
last_name
string | null
Last name.
role
string
Workspace role (root, project_manager, ops_lead, pilot, client).
title
string | null
Job title.
phone_number
string | null
Phone number.
profile_picture
string | null
Profile picture URL.
created
number
Unix timestamp (milliseconds) when the member was added.
updated
number
Unix timestamp (milliseconds) when the member was last updated.
curl -X GET https://api.dronebundle.com/v1/team/03144892-6021-705a-08f2-8e147cff3f28 \
  -H "Authorization: Bearer v1_your_api_key_here"
{
  "id": "03144892-6021-705a-08f2-8e147cff3f28",
  "email": "john@example.com",
  "first_name": "John",
  "last_name": "Smith",
  "role": "pilot",
  "title": "Senior Pilot",
  "phone_number": "+45 12345678",
  "profile_picture": null,
  "created": 1743400000000,
  "updated": 1743400000000
}

Errors

404 Not Found - Team member not found.
{
  "message": "User not found"
}