Automation

Compare two automation scan results by their jsmon IDs

post
/automation/compare-results
Authorizations
Query parameters
wkspIdstringRequired

Workspace ID of the user

Body
id1stringRequired

First jsmon ID

Example: abc123
id2stringRequired

Second jsmon ID

Example: xyz456
Responses
200

Differences between array fields in automation results

application/json
post
/automation/compare-results
POST /automation/compare-results?wkspId=text HTTP/1.1
Host: api-dev.jsmon.sh
Content-Type: application/json
Accept: */*
Content-Length: 31

{
  "id1": "abc123",
  "id2": "xyz456"
}
{
  "message": "Differences found in array fields",
  "differences": {
    "ANY_ADDITIONAL_PROPERTY": {
      "removed": [
        "text"
      ],
      "added": [
        "text"
      ]
    }
  }
}