Skip to content

Manager submits feedback. Triggers the employee notification (FR-23).

POST
/summaries/{summaryId}/response
curl --request POST \
--url https://api.gospl.example/v1/summaries/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/response \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "body": "example" }'

Caller must be the summary owner’s manager (in chain) per PR-06.

summaryId
required
string format: uuid
Media type application/json
object
body
required

Rich text feedback.

string
>= 1 characters
Example generated
{
"body": "example"
}

Response logged.

Media type application/json
object
id
required
string format: uuid
manager
required
object
id
required
string format: uuid
name
required
string
team
string
body
required
string
createdAt
required
string format: date-time
Example generated
{
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"manager": {
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"name": "example",
"team": "example"
},
"body": "example",
"createdAt": "2026-04-15T12:00:00Z"
}

Missing/invalid credentials.

Media type application/json
object
code
required
string
message
required
string
Example generated
{
"code": "example",
"message": "example"
}

Authenticated but not permitted (incl. out-of-chain, cross-tenant).

Media type application/json
object
code
required
string
message
required
string
Example generated
{
"code": "example",
"message": "example"
}

Not found within the caller’s tenant.

Media type application/json
object
code
required
string
message
required
string
Example generated
{
"code": "example",
"message": "example"
}