Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 4.17 KB

deleteexpenseresponse.md

File metadata and controls

31 lines (25 loc) · 4.17 KB

DeleteExpenseResponse

Expenses

Example Usage

import { DeleteExpenseResponse } from "@apideck/unify/models/components";

let value: DeleteExpenseResponse = {
  statusCode: 200,
  status: "OK",
  service: "quickbooks",
  resource: "Expenses",
  operation: "delete",
  data: {
    id: "12345",
  },
};

Fields

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.