Versions
API Documentation for the BugSplat Versions Endpoint
This endpoint supports paging, and filtering queries. More information paging filtering, and grouping is available here.
Get a list stats for crashes that have been posted separated by application and version, create a new version, or set the retired and full dumps flags on a specified version.
Versions
GET
https://app.bugsplat.com/api/versions
Returns a list of versions in a given database.
Query Parameters
Name | Type | Description |
---|---|---|
database | string | BugSplat database containing symbol stores |
Versions
POST
https://app.bugsplat.com/api/versions
Used to create a new version and returns a pre-signed URL that can be used to upload new symbol files.
Request Body
Name | Type | Description |
---|---|---|
symFileName | string | Filename of the symbol file being uploaded to the symbol store via the returned pre-signed URL. |
size | number | Size of symbol file being uploaded to the symbol store via the returned pre-signed URL. Enter 0 to create a placeholder symbol store |
appVersion* | string | Version of the application symbols being stored in the new symbol store |
appName* | string | Name of application symbols being stored in the new symbol store |
database | string | BugSplat database in which the symbol store should be created |
Versions
PUT
https://app.bugsplat.com/api/versions
Used to set the retired and fullDumps flags for a specified version.
Request Body
Name | Type | Description |
---|---|---|
fullDumps | 0|1 | Flag indicating that the BugSplat Native and .NET SDKs should generate and upload . This feature incurs additional costs. to enable full memory dumps for your account. |
retired | 0|1 | Flag indicating that the version should be marked as retired. Crash reports for retired versions will not be ingested or processed. |
appVersion* | string | Version of application for which the retired/fullDumps flags should be updated |
appName* | string | Name of application for which the retired/fullDumps flags should be updated |
database | string | BugSplat database in which the symbol store should be created |
Versions
DELETE
https://app.bugsplat.com/api/versions
Remove symbols from a specified version or versions.
Path Parameters
Name | Type | Description |
---|---|---|
database* | string | BugSplat database containing versions with symbols for removal |
appName | string | Single application name to remove symbols for, required if appVersion is set |
appVersion | string | Single application version to remove symbols for, required if appName is set |
appVersions | array | Multi-dimensional array of appName and appVersion for symbol removal eg |
Last updated