curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GONG_ADD_CALL' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "GONG_ADD_CALL",
"parameters": {
"actualStart": "<string>",
"clientUniqueId": "<string>",
"direction": "Conference",
"parties": "<string>",
"primaryUser": "<string>",
"title": "<string>",
"downloadMediaUrl": "<string>",
"purpose": "<string>",
"duration": "<string>"
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GONG_ADD_CALL' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "GONG_ADD_CALL",
"parameters": {
"actualStart": "<string>",
"clientUniqueId": "<string>",
"direction": "Conference",
"parties": "<string>",
"primaryUser": "<string>",
"title": "<string>",
"downloadMediaUrl": "<string>",
"purpose": "<string>",
"duration": "<string>"
}
}
'Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Call Start Date : Accepts ISO 8601 date format. (example: "2022-08-01T07:00:00.000Z")
Client Unique ID : A call's unique identifier in the PBX or the recording system. Gong uses this identifier to prevent repeated attempts to upload the same recording. (example: "123abc")
Direction
Conference, Inbound, Outbound, Unknown Parties : An array list of the call's participants as objects. A party must be provided for the Primary User. See the docs (https://app.gong.io/settings/api/documentation#post-/v2/callsr) to view the complete parties object reference. (example: "[ { "emailAddress": "[email protected]", "name": "Test User", "userId": "7387268041252473322" } ]")
Primary User : The Gong internal user ID of the team member who hosted the call. (example: "7347263041252417409")
Title : The title of the call. This title is available in the Gong system for indexing and search. (example: "Call with Sales")
Download Media URL : The URL from which Gong can download the media file. Up to 1.5 GB.
Purpose : The purpose of the call. Limit of 255 characters.
Duration : The call duration in seconds. (example: "3600.0")
Success
Was this page helpful?