latestOpenAPI 3.0.02026-08-1284111344.5 KB
14666f4db0f8
Leads
Retrieve a list of Lead Technicians
Retrieves a paginated list of technicians assigned to a lead.
get/v2/leads/{leadId}/team
Path parameters
leadIdstring required
Example:LD-BA5r7o4bqzR9MONa
The Lead ID
Query parameters
pageSizenumber
Example:10
The page size
pagenumber
Example:1
The page number
Headers
Authorizationstring required
Example:Bearer <token>
Bearer Token
Response
A paginated list of lead technicians
Example response
{
"pageSize": 10,
"page": 1,
"totalResults": 50,
"hasMore": true,
"data": [
{
"id": "USR-BA5r7o4bqzR9MONa",
"name": "John Doe",
"emailAddress": "john.doe@example.com",
"isPrimary": true
}
]
}