cogmoteGO
    cogmoteGO
    • data
      • Get experiments data
        GET
    • broadcast
      • List data broadcasting
        GET
      • Create data broadcasting
        POST
      • Subscribe data broadcasting
        GET
      • Get latest data
        GET
      • Upload data to specific data broadcasting
        POST
      • Delete broadcast
        DELETE
      • Subscribe mock data broadcasting
        GET
      • Get latest mock data
        GET
      • Subscribe default data broadcasting
        GET
      • Get latest data from default data broadcasting endpoint
        GET
      • Upload data to default data broadcasting
        POST
    • cmds
      • proxies
        • Get all command proxy
        • Create command proxy
        • Send command to proxy
        • Delete all command proxies
        • Delete a command proxy
    • exps
      • List experiment records
        GET
      • Register experiment
        POST
      • Delete experiments
        DELETE
      • Get experiment
        GET
      • Update experiment record
        PUT
      • Delete experiment
        DELETE
      • Init git experiment
        POST
      • update experiment git repository
        PUT
      • Switch to a branch
        POST
      • init archive experiment
        POST
      • Update archive experiment
        PUT
      • Start experiment
        POST
      • Start experiment by cmd
        POST
      • Stop experiment
        POST
    • infos
      • Get cagelab information
      • Update cagelab infomations
    • obs
      • get obs state
      • init obs
      • start streaming
      • stop streaming
      • push data to obs
    • email
      • Post email
    • Get cagelab health
      GET
    • Get whether cogmoteGO is running
      GET
    • Get device infomation
      GET
    • get exps status
      GET
    • update exps status
      PATCH
    • Schemas
      • exps
        • experiment
        • experimentRecords
        • experimentRecord
        • experimentStatus
      • cmds
        • proxies
          • endpoint
          • cmds_proxy
      • broadcast
        • bordercastEndpoints
      • obs
        • obsData
      • APIError
      • HealthReport
      • device
      • BroadcastExample

      update exps status

      Developing
      PATCH
      /api/status
      Last modified:2025-09-11 12:52:03
      Used to partially update the status of the experiment currently running on the service

      Request

      Body Params application/json

      Example
      {
          "id": "string",
          "is_running": true
      }

      Request Code Samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request PATCH 'http://localhost:9012/api/status' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "id": "string",
          "is_running": true
      }'

      Responses

      🟢200Success
      application/json
      Body

      Example
      {
          "id": "string",
          "is_running": true
      }
      Modified at 2025-09-11 12:52:03
      Previous
      get exps status
      Next
      experiment
      Built with