Sales
Retrieve a Meeting
GET
/
meetings
/
{id}
curl --request GET \
--url https://commerce.driv.ly/api/meetings/{id}
{
"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
}
Path Parameters
Meeting is uniquely identified by id
Query Parameters
The number of levels of related objects to include in the response
Response
200
application/json
Meeting Found
The response is of type object
.
curl --request GET \
--url https://commerce.driv.ly/api/meetings/{id}
{
"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
}
Assistant
Responses are generated using AI and may contain mistakes.