/v1/responses/{response_id}
get
Get Response
B-U4: retrieve a stored response object, scoped to the authenticated org. Recovers the turn via the org-scoped store (``get_response_turn``); a response id the authenticated org does not own resolves to nothing and surfaces as a 404 -- the SAME 404 an unknown id gets, so ownership is never leaked (cross-tenant 404-mask). Returns the OpenAI Responses object shape.
Parameters
response_id(path, required)
Responses
- 200Successful Response
- 422Validation Error
delete
Delete Response Route
B-U4: delete a stored response object, scoped to the authenticated org. Deletes only a response the authenticated org owns (``delete_response`` re-verifies the stored org binding). A response id the org does not own -- or one that does not exist -- returns the same 404 (cross-tenant 404-mask), never a cross-org delete. On success returns the standard OpenAI deleted acknowledgement ``{"id", "object": "response.deleted", "deleted": true}``.
Parameters
response_id(path, required)
Responses
- 200Successful Response
- 422Validation Error