Skip to main content

List community agents

Return a list of agents associated with the community

GET
/api/partners/v1/community/:community_id/agents/

Request

Example requestGET
curl -X GET \
    -H "Authorization: Bearer YOUR_API_KEY" \
    "https://api.funnelleasing.com/api/partners/v1/community/1234/agents/"

Response

Example responseJSON200 · application/json
{
  "items": [
    {
      "first_name": "string",
      "last_name": "string",
      "email": "string",
      "id": 0
    }
  ],
  "page": 0,
  "total_pages": 0,
  "total_items": 0
}