/api/v0/diag/cmds

List commands run on this IPFS node.

Arguments

  • verbose [bool]: Print extra information. Required: no.

Response

On success, the call to this endpoint will return with 200 and the following body:

[
  {
    "Active": "<bool>",
    "Args": [
      "<string>"
    ],
    "Command": "<string>",
    "EndTime": "<timestamp>",
    "ID": "<int>",
    "Options": {
      "<string>": "<object>"
    },
    "StartTime": "<timestamp>"
  }
]

cURL Example

curl -X POST "http://127.0.0.1:5001/api/v0/diag/cmds?verbose=<value>"

Last updated