For the complete documentation index, see llms.txt. This page is also available as Markdown.

chatAsk

Graphql fields and variables for the chatAsk mutation

Ask a question to the chat

Scope required: standard:write

mutation chatAsk ($chatId: String!, $message: String!, $appRoute: String!, $blobSignedIds: [String!]!) {
  chatAsk (chatId: $chatId, message: $message, appRoute: $appRoute, blobSignedIds: $blobSignedIds) {
      errors
  }
}

Arguments

{
  "chatId": "",
  "message": "",
  "appRoute": "",
  "blobSignedIds": [
    ""
  ]
}
Name
Type
Description

chatId

String

message

String

appRoute

String

blobSignedIds

List (String)

Response

Name
Type
Description

errors

List (String)

Last updated

Was this helpful?