- Get a single meeting for a customer by ID, including its transcript
List all meetings for a customer
Get a single meeting for...
Security
bearerAuth
- Mock serverhttps://docs.api.hook.co/_mock/v1/openapi/organizations/{organizationId}/customers/{customerId}/meetings/{meetingId}
- https://api.hook.co/v1https://api.hook.co/v1/organizations/{organizationId}/customers/{customerId}/meetings/{meetingId}
curl -i -X GET \
'https://docs.api.hook.co/_mock/v1/openapi/organizations/my-organization-id/customers/{customerId}/meetings/{meetingId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Default Response
Participants that could not be matched to a member, user or contact
Example:
[ "guest@example.com" ]
Response
{ "id": 88, "customerId": 12, "topic": "Quarterly business review", "summary": "Reviewed adoption and agreed next steps.", "url": "https://meet.example.com/abc-defg-hij", "startDate": "2019-08-24T14:15:22Z", "endDate": "2019-08-24T14:15:22Z", "members": [ { … } ], "users": [ { … } ], "contacts": [ { … } ], "unmatchedParticipants": [ "guest@example.com" ], "nextSteps": [ "Share the updated pricing proposal" ], "hasTranscript": true, "createdDate": "2019-08-24T14:15:22Z", "updatedDate": "2019-08-24T14:15:22Z", "transcript": [ { … } ] }