Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

auth is your Azure Devops Token

REQUEST

Code Block
curl --location --request POST 'https://api.momentumsuite.com/api/testPlans/run/YOUR-RUN-ID' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appPath": "http://www.google.com",
    "version": "1",
    "hookUrl": "https://capture.mobven.com/auth",
    "auth": "basic OTE1MjZmZjYtMjI2YS0xMWVi"
}'

RESPONSE

Code Block
{
    "error": false,
    "message": "OK",
    "result": {
        "callbackUrl": "https://api.momentumsuite.com/api/testRuns/testResult/YOUR_ID",
        "resultUrl": "https://console.momentumsuite.com/en/report/YOUR_ID"
    },
    "statusCode": 200,
    "errorCode": 0

Get Test Results in JSON or XML

...