Skip to content

List task mappings for a meeting

GET
/follow-ups/mappings
curl --request GET \
--url 'https://my-instance.example.com/follow-ups/mappings?meetingId=example' \
--header 'Authorization: Bearer <token>'
meetingId
required
string

The task mappings.

Media type application/json
object
ok
boolean
mappings
Array<object>
object
title
string
externalId
string
confidence
number
Example generated
{
"ok": true,
"mappings": [
{
"title": "example",
"externalId": "example",
"confidence": 1
}
]
}

meetingId is missing.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "meetingId is required"
}

The bearer token is missing or wrong.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "Unauthorized"
}