You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: bump go and add subdomains when running in server mode
* feat(deps): bump golang from 1.23-alpine to 1.24-alpine
Bumps golang from 1.23-alpine to 1.24-alpine.
---
updated-dependencies:
- dependency-name: golang
dependency-version: 1.24-alpine
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
* feat: update go mod too
* feat: add the ability to set a subdomain in a request when a test is executed
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: xavidop <xavi_tb@hotmail.com>
Executes a test suite asynchronously and returns an execution ID for tracking. The suite configuration and tests are now embedded directly in the request body, making the API more HTTP-friendly and eliminating the need for file system access.
62
63
64
+
### Request Parameters
65
+
66
+
-`api_key` (optional): Override the global Voiceflow API key for this specific test execution
67
+
-`voiceflow_subdomain` (optional): Override the global Voiceflow subdomain for this specific test execution. This allows you to test against different Voiceflow environments or custom subdomains without affecting the global configuration
68
+
-`suite`: The test suite configuration containing the test definitions
69
+
70
+
### Using Custom Subdomains
71
+
72
+
When you specify a `voiceflow_subdomain`, the API will use that subdomain for all interactions in the test suite. For example:
73
+
74
+
- If you set `"voiceflow_subdomain": "my-custom-env"`, requests will be sent to `https://general-runtime.my-custom-env.voiceflow.com`
75
+
- If you omit this field, the global subdomain configuration will be used
76
+
- This is particularly useful for testing against staging environments or customer-specific deployments
0 commit comments