Meta Data
Last updated
Last updated
Storing additional data, or "meta data", with a build file can provide valuable context for your automated tests, especially when dealing with multiple environments or specific feature branches. Meta data can be passed during the build upload process and then propagated through various aspects of the test lifecycle, such as in test reports and webhook payloads.
Environment Context: Differentiate between various deployment environments, e.g. development, staging, etc.
Branch Information: Identify the specific feature branch associated with the build.
Additional Notes: Provide extra information, such as developer notes, versioning, or other relevant data.
uploadBuild
EndpointMeta data should be passed as a JSON object to the uploadBuild
endpoint. Ensure your data is structured appropriately and is relevant to your testing objectives.
For more details on using the API endpoint, refer to our .
Here’s a simple example to illustrate how you might pass meta data when interacting with the uploadBuild
endpoint:
Shell