Reflect · Example Payload

Reflect Run Test Example

AI TestingArtificial IntelligenceAutomated TestingCI/CDEnd-to-End TestingQATesting

Reflect Run Test Example is an example object payload from Reflect, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.reflect.run/v1/tests/1001/executions",
    "headers": {
      "X-API-KEY": "{your_api_key}",
      "Content-Type": "application/json"
    },
    "body": {
      "overrides": {
        "hostnames": [
          {"source": "app.example.com", "target": "staging.example.com"}
        ],
        "parameters": [
          {"name": "username", "value": "testuser@example.com"}
        ]
      },
      "emailFailures": true
    }
  },
  "response": {
    "status": 200,
    "body": {
      "executionId": 5501
    }
  }
}