Build

Deal Team

List team members on deals in the Lev API.

Updated March 2026
GET/api/external/v2/deals/{deal_id}/team

Team data can also be embedded directly in deal list and detail responses using ?include=team on GET /deals or GET /deals/{deal_id}. See Deals for details.

List Team

GET/api/external/v2/deals/{deal_id}/team

List all team members assigned to a deal

Path parameters
deal_idintegerrequired
The deal ID

Response (200):

{
  "request_id": "...",
  "timestamp": "2026-03-20T15:30:45Z",
  "data": [
    {
      "id": 401,
      "user_id": 1234,
      "first_name": "Jane",
      "last_name": "Smith",
      "email": "jane@example.com",
      "deal_role": "deal_lead",
      "is_primary": true,
      "permission": null,
      "photo_url": null
    }
  ]
}
401unauthorized
Authentication requiredMissing or invalid Authorization header
404not_found
Deal not foundThe deal_id doesn't exist or isn't accessible to the authenticated user

Team Member Object

FieldTypeDescription
idintegerTeam assignment identifier
user_idinteger|nullUser ID
first_namestring|nullFirst name
last_namestring|nullLast name
emailstring|nullEmail address
deal_rolestring|nullTeam role (deal_lead, originator, closer, etc.)
is_primarybooleanWhether this is the primary team member
permissionstring|nullPermission level
photo_urlstring|nullProfile photo URL
More in this section