Create notice v3
documentedSubmit a new error notice to a project (v3).
POST /api/v3/projects/{project_id}/notices?key=PROJECT_KEYError notification v3no implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.airbrake.io/api/v3/projects/{{$project_id}}/notices?key={{AIRBRAKE_API_KEY}}" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"errors": [{"type": "{{$error_type}}", "message": "{{$error_message}}", "backtrace": [{"file": "{{$bt_file}}", "line": {{$bt_line}}, "function": "{{$bt_function}}"}]}]}'