Note deleted
import { DeleteNoteResponse } from "@apideck/unify/models/components";
let value: DeleteNoteResponse = {
statusCode: 200,
status: "OK",
service: "zoho-crm",
resource: "notes",
operation: "delete",
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 | zoho-crm |
resource |
string | ✔️ | Unified API resource name | notes |
operation |
string | ✔️ | Operation performed | delete |
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 |