Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77168,7 +77168,16 @@ paths:
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
/api/v2/incidents/{incident_id}/attachments/postmortems:
post:
description: Create a postmortem attachment for an incident.
description: 'Create a postmortem attachment for an incident.


The endpoint accepts markdown for notebooks created in Confluence or Google
Docs.

Postmortems created from notebooks need to be formatted using frontend notebook
cells,

in addition to markdown format.'
operationId: CreateIncidentPostmortemAttachment
parameters:
- description: The ID of the incident
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1477,6 +1477,10 @@ public CompletableFuture<Attachment> createIncidentPostmortemAttachmentAsync(
/**
* Create a postmortem attachment for an incident.
*
* <p>The endpoint accepts markdown for notebooks created in Confluence or Google Docs.
* Postmortems created from notebooks need to be formatted using frontend notebook cells, in
* addition to markdown format.
*
* @param incidentId The ID of the incident (required)
* @param body (required)
* @return ApiResponse&lt;Attachment&gt;
Expand Down
Loading