Skip to main content

Get action items

The get action items endpoint identifies tasks from the conversation that require action, generally involving one or more individuals. These tasks could include scheduling a meeting, sharing a document, or completing a specific task. This endpoint is beneficial for tracking tasks and ensuring follow-through on commitments made during a conversation.

For example, an action item could be "John will send the monthly sales report by next Monday" or "The team needs to finalize the design before the client meeting on Friday."

Before we start

Transcripts must be generated upon request. If you have already generated a transcript, you can use the recordingId to get the action items.

How to use

You can use the following cURL to obtain a response on the endpoint:

curl --location --request GET https://api.superviz.com/recordings/transcripts/{recordingId}/action-items \
--header 'Content-Type: application/json' \
--header "client_id: ${YOUR CLIENT_ID}" \
--header "secret: ${YOUR SECRET}" \
--header "passphrase: ${YOUR PASSPHRASE}"

HTTP Request

GET https://api.superviz.com/recordings/transcripts/{recordingId}/action-items
NameDescription
recordingIdThis field contains the unique identification of the recording, which can be found with the GET Recordings endpoint.

Headers

When using this endpoint, you need to provide the Authorization Bearer token and the passphrase. The following headers are required:

NameDescription
client_idRequired. You need to use the Client ID to authenticate in this repository. You can retrieve your Client ID under the Dashboard > Developer > Keys.
secretRequired. You need to use the Secret Key to authenticate in this repository. You can create a new API Secret under our Dashboard > Developer > Keys.
passphraseRequired. The passphrase of your organization that allows the decryption of the transcript content. You can create a new passphrase under our Dashboard > Developer > Keys.

Response

Status code 200 will indicate that the request was successful. The response will be a list of objects in JSON format and include the following fields:

NameTypeDescription
textstringThis field contains one of the action items.

Example:

[
{
"text": "...",
},
...
]