GET
/
meetings
curl --request GET \
  --url https://commerce.driv.ly/api/meetings
{
  "data": [
    {
      "id": "met_3kd93d3j93d2",
      "time": "2024-03-12T10:00:00Z",
      "note": "Discuss annual contract terms",
      "email": "contact@email.com",
      "salesRep": {
        "id": "rep_3kd93d3j93d2",
        "emails": [
          "rep@email.com"
        ],
        "lastName": "Smith",
        "firstName": "John",
        "templates": [
          "Template ID"
        ],
        "creditBands": [
          "Good",
          "Excellent"
        ],
        "primaryEmail": "rep@email.com",
        "phoneNumbers": [
          "555-0182"
        ],
        "primaryPhoneNumber": "555-0182",
        "isAcceptingNewLeads": true
      },
      "phoneNumber": "555-0192"
    }
  ],
  "success": true,
  "page": 2,
  "nextPage": 3,
  "prevPage": 1,
  "totalPages": 3,
  "totalCount": 25,
  "limit": 10,
  "pagingCounter": 11,
  "hasPrevPage": true,
  "hasNextPage": true
}

Query Parameters

depth
integer

The number of levels of related objects to include in the response

sort
string

Pass the name of a top-level field to sort by that field in ascending order. Prefix the name of the field with a minus symbol ("-") to sort in descending order.

limit
number

Limit number of results, default 10

where
object

Search for results fitting criteria, uses qs library for query string parsing

Response

200
application/json

Meetings Found

The response is of type object.