Manager submits feedback. Triggers the employee notification (FR-23).
POST
/summaries/{summaryId}/response
const url = 'https://api.gospl.example/v1/summaries/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/response';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"body":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” summaryId
required
string format: uuid
Request Body required
Section titled “Request Body required ” Media type application/json
object
body
required
Rich text feedback.
string
Example generated
{ "body": "example"}Responses
Section titled “ Responses ”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"}