Expenses
import { DeleteExpenseResponse } from "@apideck/unify/models/components";
let value: DeleteExpenseResponse = {
statusCode: 200,
status: "OK",
service: "quickbooks",
resource: "Expenses",
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 | quickbooks |
resource |
string | ✔️ | Unified API resource name | Expenses |
operation |
string | ✔️ | Operation performed | delete |
data |
components.UnifiedId | ✔️ | A object containing a unique identifier for the resource that was created, updated, or deleted. |