Databases
API Documentation for the BugSplat Databases Endpoint
Operations related to a user or company's databases in BugSplat. Get a list of databases for the currently authenticated user or company, create a new database, transfer a database's ownership to another company, or delete a database.
Databases
GET
https://app.bugsplat.com/api/databases
Returns databases for the current user or a company specified by companyId.
Query Parameters
Name | Type | Description |
---|---|---|
companyId | number | ID of the company that owns the databases |
Databases
POST
https://app.bugsplat.com/api/databases
Create a new database for the current user. Default values for the new database are copied from the current database.
Request Body
Name | Type | Description |
---|---|---|
database* | string | Name of the database being created |
Databases
PUT
https://app.bugsplat.com/api/databases
Transfer the ownership of a database to a different company.
Request Body
Name | Type | Description |
---|---|---|
companyId | number | ID of the company the database is being transferred to |
database | string | Name of the database being transferred |
Databases
DELETE
https://app.bugsplat.com/api/databases
Deletes a database and all associated data from BugSplat. This action is irreversible
Query Parameters
Name | Type | Description |
---|---|---|
database | string | BugSplat database to delete |
Last updated