Skip to main content
POST
/
v1
/
organizations
/
{organization_id}
/
workspaces
/
{workspace_id}
/
website_evaluations
/
{id}
/
update_ai_summary
Update AI summary and takeaways
curl --request POST \
  --url https://api.shareofmodel.ai/v1/organizations/{organization_id}/workspaces/{workspace_id}/website_evaluations/{id}/update_ai_summary \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ai_summary": "The website shows strong accessibilitycompliance but has performance bottlenecks on mobile.",
  "takeaways": [
    "Improve image lazy-loading",
    "Optimize JavaScript bundle size",
    "Add missing ARIA labels"
  ]
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.shareofmodel.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Path Parameters

id
string<uuid>
required

A UUID string identifying this website evaluation.

organization_id
string<uuid>
required

A UUID string identifying the organization.

workspace_id
string<uuid>
required

A UUID string identifying the workspace.

Body

application/json
ai_summary
string

The AI-generated summary for the website evaluation.

Example:

"The website shows strong accessibilitycompliance but has performance bottlenecks on mobile."

takeaways
string[]

List of key takeaways from the evaluation.

Maximum string length: 500
Example:
[
"Improve image lazy-loading",
"Optimize JavaScript bundle size",
"Add missing ARIA labels"
]

Response

AI summary and/or takeaways updated successfully.