Delete a Comment
import { DeleteCommentResponse } from "@apideck/unify/models/components";
let value: DeleteCommentResponse = {
statusCode: 200,
status: "OK",
service: "jira",
resource: "Tickets",
operation: "add",
data: {
id: "12345",
},
};| Field | Type | Required | Description | Example |
|---|---|---|---|---|
statusCode |
number | ✔️ | HTTP Response Status Code | 200 |
status |
string | ✔️ | HTTP Response Status | OK |
service |
string | ✔️ | Apideck ID of service provider | jira |
resource |
string | ✔️ | Unified API resource name | Tickets |
operation |
string | ✔️ | Operation performed | add |
data |
components.UnifiedId | ✔️ | A object containing a unique identifier for the resource that was created, updated, or deleted. | |
raw |
Record<string, any> | ➖ | Raw response from the integration when raw=true query param is provided |