All URIs are relative to //127.0.0.1/
Method | HTTP request | Description |
---|---|---|
add_meeting_using_post | POST /v2/meetings | Create a New Gong Meeting (/v2/meetings) |
delete_meeting_using_delete | DELETE /v2/meetings/{meetingId} | Delete a Gong Meeting (/v2/meetings) |
integration_status_using_post | POST /v2/meetings/integration/status | Validate Gong meeting Integration (/v2/meetings/integration/status) |
update_meeting_using_put | PUT /v2/meetings/{meetingId} | Update a Gong Meeting (/v2/meetings/{meetingId}) |
NewMeetingResponse add_meeting_using_post(body)
Create a New Gong Meeting (/v2/meetings)
When accessed through a Bearer token authorization method, this endpoint requires the scope 'api:meetings:user:create'.
# load the gem
require 'gong_api'
api_instance = GongAPI::MeetingsInBetaPhaseApi.new
body = GongAPI::NewMeetingRequest.new # NewMeetingRequest | newMeetingRequest
begin
#Create a New Gong Meeting (/v2/meetings)
result = api_instance.add_meeting_using_post(body)
p result
rescue GongAPI::ApiError => e
puts "Exception when calling MeetingsInBetaPhaseApi->add_meeting_using_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
body | NewMeetingRequest | newMeetingRequest |
No authorization required
- Content-Type: application/json
- Accept: application/json
DeleteMeetingRequest delete_meeting_using_delete(bodymeeting_id)
Delete a Gong Meeting (/v2/meetings)
When accessed through a Bearer token authorization method, this endpoint requires the scope 'api:meetings:user:delete'.
# load the gem
require 'gong_api'
api_instance = GongAPI::MeetingsInBetaPhaseApi.new
body = GongAPI::DeleteMeetingRequest.new # DeleteMeetingRequest | request
meeting_id = 789 # Integer | Gong's unique identifier for the meeting (up to 20 digits).
begin
#Delete a Gong Meeting (/v2/meetings)
result = api_instance.delete_meeting_using_delete(bodymeeting_id)
p result
rescue GongAPI::ApiError => e
puts "Exception when calling MeetingsInBetaPhaseApi->delete_meeting_using_delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
body | DeleteMeetingRequest | request | |
meeting_id | Integer | Gong's unique identifier for the meeting (up to 20 digits). |
No authorization required
- Content-Type: /
- Accept: application/json
IntegrationStatusResponse integration_status_using_post(body)
Validate Gong meeting Integration (/v2/meetings/integration/status)
When accessed through a Bearer token authorization method, this endpoint requires the scope 'api:meetings:integration:status'.
# load the gem
require 'gong_api'
api_instance = GongAPI::MeetingsInBetaPhaseApi.new
body = GongAPI::IntegrationStatusRequest.new # IntegrationStatusRequest | integrationStatusRequest
begin
#Validate Gong meeting Integration (/v2/meetings/integration/status)
result = api_instance.integration_status_using_post(body)
p result
rescue GongAPI::ApiError => e
puts "Exception when calling MeetingsInBetaPhaseApi->integration_status_using_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
body | IntegrationStatusRequest | integrationStatusRequest |
No authorization required
- Content-Type: application/json
- Accept: application/json
UpdateMeetingResponse update_meeting_using_put(bodymeeting_id)
Update a Gong Meeting (/v2/meetings/{meetingId})
When accessed through a Bearer token authorization method, this endpoint requires the scope 'api:meetings:user:update'.
# load the gem
require 'gong_api'
api_instance = GongAPI::MeetingsInBetaPhaseApi.new
body = GongAPI::UpdateMeetingRequest.new # UpdateMeetingRequest | updateMeetingRequest
meeting_id = 789 # Integer | Gong's unique identifier for the meeting (up to 20 digits).
begin
#Update a Gong Meeting (/v2/meetings/{meetingId})
result = api_instance.update_meeting_using_put(bodymeeting_id)
p result
rescue GongAPI::ApiError => e
puts "Exception when calling MeetingsInBetaPhaseApi->update_meeting_using_put: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
body | UpdateMeetingRequest | updateMeetingRequest | |
meeting_id | Integer | Gong's unique identifier for the meeting (up to 20 digits). |
No authorization required
- Content-Type: application/json
- Accept: application/json