ThingSpeak · Arazzo Workflow

ThingSpeak Revise Queued TalkBack Command

Version 1.0.0

Queue a command, revise its text before a device runs it, then read it back.

1 workflow 1 source API 1 provider
View Spec View on GitHub IoTInternet of ThingsAnalyticsTime SeriesMQTTMATLABSensorsTelemetryArazzoWorkflows

Provider

thingspeak

Workflows

revise-queued-talkback-command
Queue a command, update its text, then read the revised command.
Adds a command, captures its id, updates the command text, and reads the command back to confirm the change.
3 steps inputs: apiKey, commandString, position, revisedCommandString, talkbackId outputs: commandId, revisedCommandString
1
addCommand
Add the initial command to the TalkBack queue.
2
updateCommand
Update the queued command with the corrected command text.
3
readCommand
Read the command back to confirm the revised text was stored.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: ThingSpeak Revise Queued TalkBack Command
  summary: Queue a command, revise its text before a device runs it, then read it back.
  description: >-
    A correction flow for a command that is still pending in a TalkBack queue. It
    adds a command, updates that same command's text while it is still queued, and
    reads the command back to confirm the revision. This lets an operator fix a
    mistyped instruction before any device executes it. Every step spells out its
    request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: talkbacksApi
  url: ../openapi/thingspeak-talkbacks-api-openapi.yml
  type: openapi
workflows:
- workflowId: revise-queued-talkback-command
  summary: Queue a command, update its text, then read the revised command.
  description: >-
    Adds a command, captures its id, updates the command text, and reads the
    command back to confirm the change.
  inputs:
    type: object
    required:
    - talkbackId
    - apiKey
    - commandString
    - revisedCommandString
    properties:
      talkbackId:
        type: integer
        description: Numeric id of the TalkBack queue.
      apiKey:
        type: string
        description: TalkBack API Key (api_key query parameter).
      commandString:
        type: string
        description: Initial command text to queue.
      revisedCommandString:
        type: string
        description: Corrected command text to write over the queued command.
      position:
        type: integer
        description: Optional position in the queue for the command.
  steps:
  - stepId: addCommand
    description: >-
      Add the initial command to the TalkBack queue.
    operationId: addCommand
    parameters:
    - name: talkback_id
      in: path
      value: $inputs.talkbackId
    requestBody:
      contentType: application/json
      payload:
        api_key: $inputs.apiKey
        command_string: $inputs.commandString
        position: $inputs.position
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      commandId: $response.body#/id
  - stepId: updateCommand
    description: >-
      Update the queued command with the corrected command text.
    operationId: updateCommand
    parameters:
    - name: talkback_id
      in: path
      value: $inputs.talkbackId
    - name: command_id
      in: path
      value: $steps.addCommand.outputs.commandId
    requestBody:
      contentType: application/json
      payload:
        api_key: $inputs.apiKey
        command_string: $inputs.revisedCommandString
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      commandString: $response.body#/command_string
  - stepId: readCommand
    description: >-
      Read the command back to confirm the revised text was stored.
    operationId: readCommand
    parameters:
    - name: talkback_id
      in: path
      value: $inputs.talkbackId
    - name: command_id
      in: path
      value: $steps.addCommand.outputs.commandId
    - name: api_key
      in: query
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      commandId: $response.body#/id
      commandString: $response.body#/command_string
      executedAt: $response.body#/executed_at
  outputs:
    commandId: $steps.addCommand.outputs.commandId
    revisedCommandString: $steps.readCommand.outputs.commandString

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/thingspeak-revise-queued-talkback-command-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.