PATCH
/
workspaceagents
/
me
/
logs
curl --request PATCH \
  --url https://cloud.local.wirtual.dev/api/v2/workspaceagents/me/logs \
  --header 'Content-Type: application/json' \
  --header 'Wirtual-Session-Token: <api-key>' \
  --data '{
  "log_source_id": "<string>",
  "logs": [
    {
      "created_at": "<string>",
      "level": "trace",
      "output": "<string>"
    }
  ]
}'
{
  "detail": "<string>",
  "message": "<string>",
  "validations": [
    {
      "detail": "<string>",
      "field": "<string>"
    }
  ]
}

Authorizations

Wirtual-Session-Token
string
header
required

Body

application/json
logs
log_source_id
string
logs
object[]

Response

200 - application/json
OK
detail
string

Detail is a debug message that provides further insight into why the action failed. This information can be technical and a regular golang err.Error() text.

  • "database: too many open connections"
  • "stat: too many open files"
message
string

Message is an actionable message that depicts actions the request took. These messages should be fully formed sentences with proper punctuation. Examples:

  • "A user has been created."
  • "Failed to create a user."
validations
object[]

Validations are form field-specific friendly error messages. They will be shown on a form field in the UI. These can also be used to add additional context if there is a set of errors in the primary 'Message'.