cogmoteGO
  1. exps
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
  • Get cagelab health
    GET
  • Get cagelab realtime status
    GET
  • Get whether cogmoteGO is running
    GET
  • Get device infomation
    GET
  1. exps

Update experiment record

Developing
PUT
/api/exps/{id}
Last modified:2025-06-22 08:59:01

Request

Path Params

Body Params application/json

Example
{
    "nickname": "string",
    "type": "string",
    "address": "string",
    "data_path": "string",
    "execs": [
        {
            "nickname": "string",
            "exec": "string"
        }
    ]
}

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 PUT 'http://localhost:9012/api/exps/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "nickname": "string",
    "type": "string",
    "address": "string",
    "data_path": "string",
    "execs": [
        {
            "nickname": "string",
            "exec": "string"
        }
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{
    "id": "string",
    "status": "string",
    "branch": "string",
    "register_time": "string",
    "last_update": "string",
    "experiment": {
        "nickname": "string",
        "type": "string",
        "address": "string",
        "data_path": "string",
        "execs": [
            {
                "nickname": "string",
                "exec": "string"
            }
        ]
    }
}
Modified at 2025-06-22 08:59:01
Previous
Get experiment
Next
Delete experiment
Built with