Skip to main content
POST
/
bug-reports
Create Bug Report
curl --request POST \
  --url https://api.example.com/bug-reports/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>"
}
'
{
  "issue_id": "<string>",
  "issue_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.montereyfinancial.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
title
string
required
Maximum string length: 200
description
string
required
Maximum string length: 5000

Response

Successful Response

issue_id
string
required
issue_url
string
required