curl --request GET \
--url https://api.example.com/projects/{project_id}/reports \
--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>"
}
]curl --request GET \
--url https://api.example.com/projects/{project_id}/reports \
--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>"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Was this page helpful?