curl --request PUT \
--url https://api.example.com/projects/{project_id}/reports/{report_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompts_ids": [
"<string>"
],
"records_ids": [
"<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>",
"reasoning_mode": "<string>"
}
'{
"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 PUT \
--url https://api.example.com/projects/{project_id}/reports/{report_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompts_ids": [
"<string>"
],
"records_ids": [
"<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>",
"reasoning_mode": "<string>"
}
'{
"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?