Skip to main content
POST
/
api
/
run
/
prompts
/
index
/
subscribeToInCallPrompts
subscribeToInCallPrompts
curl --request POST \
  --url https://connvo-dev.convex.cloud/api/run/prompts/index/subscribeToInCallPrompts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "args": {
    "meetingId": "<string>"
  }
}'
{
  "status": "success",
  "errorMessage": "<string>",
  "errorData": {},
  "value": {
    "lastUpdated": 123,
    "prompts": [
      {
        "_id": "<string>",
        "content": "<string>",
        "createdAt": 123,
        "feedback": "used",
        "relevance": 123,
        "tags": [
          "<string>"
        ],
        "usedAt": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Standard user authentication token issued via WorkOS. Provide as Authorization: Bearer <user-token>.

Body

application/json
args
object
required

Response

Convex executed your request and returned a result

status
enum<string>
required
Available options:
success,
error
errorMessage
string
errorData
object
value
object