Skip to main content
GET
/
projects
/
{project_id}
/
reports
/
{report_id}
Get Project Report
curl --request GET \
  --url https://api.example.com/projects/{project_id}/reports/{report_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "prompts_ids": [
    "<string>"
  ],
  "records_ids": [
    "<string>"
  ],
  "project_id": "<string>",
  "category": "<string>",
  "title": "<string>",
  "context": "<string>",
  "context_expand": "<string>",
  "status": "<string>",
  "content": "<string>",
  "is_public": true,
  "is_archived": true,
  "is_deleted": true,
  "preset_id": "<string>",
  "report_language": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "project_name": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

project_id
string<uuid>
required
report_id
string<uuid>
required

Response

Successful Response

id
string
required
prompts_ids
string[]
required
records_ids
string[]
required
project_id
string
required
category
string | null
required
title
string
required
context
string | null
required
context_expand
string | null
required
status
string
required
content
string | null
required
is_public
boolean
required
is_archived
boolean
required
is_deleted
boolean
required
preset_id
string | null
required
report_language
string | null
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
project_name
string | null