BugSnag: Get Build
bugsnag_get_buildRetrieve detailed metadata, error counts, and stability metrics for a specific build to correlate with error spikes or deployments.
Instructions
Get more details for a specific build by its ID
Toolset: Releases
Parameters:
projectId (string): Unique identifier of the project. This is optional if a current project is set and is used to set the current project for BugSnag tools.
buildId (string) required: Unique identifier of the app build
Output Description: JSON object containing build details along with stability metrics such as user and session stability, and whether it meets project targets
Use Cases: 1. View build metadata such as version, source control info, and error counts 2. Analyze a specific build to correlate with error spikes or deployments 3. See the stability targets for a project and if the build meets them
Examples:
Get details for a specific build
{
"buildId": "5f8d0d55c9e77c0017a1b2c3"
}Expected Output: JSON object with build details including version, source control info, error counts and stability data.
Hints: 1. Build IDs can be found using the List builds tool
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| buildId | Yes | Unique identifier of the app build | |
| projectId | No | Unique identifier of the project. This is optional if a current project is set and is used to set the current project for BugSnag tools. |