List issue notes
curl --request GET \
--url https://api.reconifyhq.com/v2/issues/{issue_id}/notes \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.reconifyhq.com/v2/issues/{issue_id}/notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.reconifyhq.com/v2/issues/{issue_id}/notes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"notes": [
{
"body": "Confirmed that the provider callback arrived late.",
"created_at": "2026-01-01T12:00:00Z",
"id": "00000000-0000-7000-8000-000000000003"
}
]
}{
"code": "invalid_input",
"message": "request is invalid"
}{
"code": "unauthorized",
"message": "authentication required"
}{
"code": "forbidden",
"message": "credential cannot access this organization"
}{
"code": "not_found",
"message": "resource not found"
}{
"code": "database_unavailable",
"message": "public API data is unavailable"
}List issue notes
Lists append-only investigation notes for an issue.
GET
https://api.reconifyhq.com
/
v2
/
issues
/
{issue_id}
/
notes
List issue notes
curl --request GET \
--url https://api.reconifyhq.com/v2/issues/{issue_id}/notes \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.reconifyhq.com/v2/issues/{issue_id}/notes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.reconifyhq.com/v2/issues/{issue_id}/notes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"notes": [
{
"body": "Confirmed that the provider callback arrived late.",
"created_at": "2026-01-01T12:00:00Z",
"id": "00000000-0000-7000-8000-000000000003"
}
]
}{
"code": "invalid_input",
"message": "request is invalid"
}{
"code": "unauthorized",
"message": "authentication required"
}{
"code": "forbidden",
"message": "credential cannot access this organization"
}{
"code": "not_found",
"message": "resource not found"
}{
"code": "database_unavailable",
"message": "public API data is unavailable"
}