Apps
Create and retrieve Projects is needed to get the ingestion key.
List Apps
GET
https://app.inspector.dev/api/apps
Headers
Authentication*
string
API key.
App Details
GET
https://app.inspector.dev/api/apps/:id
Path Parameters
id*
integer
App's ID
Headers
Authentication*
string
API key
Create App
POST
https://app.inspector.dev/api/apps
Create a new project will generate a new ingestion key.
Headers
Authentication*
string
API key
Request Body
name*
string
The name of the project
platform_id*
integer
The ID of the technology stack used for the project
Update App
PUT
https://app.inspector.dev/api/apps/:id
Path Parameters
id*
integer
App's ID
Headers
Authentication*
string
API key
Request Body
weekly_report
boolean
Determine if you want to receive the weekly summary via email.
platform_id*
integer
The tech stack.
name*
string
Name of the project
Delete App
DELETE
https://app.inspector.dev/api/apps/:id
Path Parameters
id*
integer
App's ID
Headers
Authorization*
string
API key
Enable/Disable Data Transfer
POST
/https://app.inspector.dev/api/apps/:id/lock
The endpoint works as a toggle. To know if your application is currently locked or not you can check the locked_at
field in the app object. If it exists that means the application monitoring is currently off, and the next call to the lock endpoint will turn it on.
Headers
Content-Type
application/json
Authorization
Bearer <token>
Response
Last updated