Apideck · Schema

GetPurchaseOrderResponse

IntegrationsUnified API

Properties

Name Type Description
status_code integer HTTP Response Status Code
status string HTTP Response Status
service string Apideck ID of service provider
resource string Unified API resource name
operation string Operation performed
data object
_raw object
View JSON Schema on GitHub

JSON Schema

apideck-getpurchaseorderresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetPurchaseOrderResponse",
  "title": "GetPurchaseOrderResponse",
  "type": "object",
  "required": [
    "status_code",
    "status",
    "service",
    "resource",
    "operation",
    "data"
  ],
  "properties": {
    "status_code": {
      "type": "integer",
      "description": "HTTP Response Status Code",
      "example": 200
    },
    "status": {
      "type": "string",
      "description": "HTTP Response Status",
      "example": "OK"
    },
    "service": {
      "type": "string",
      "description": "Apideck ID of service provider",
      "example": "quickbooks"
    },
    "resource": {
      "type": "string",
      "description": "Unified API resource name",
      "example": "PurchaseOrders"
    },
    "operation": {
      "type": "string",
      "description": "Operation performed",
      "example": "one"
    },
    "data": {
      "$ref": "#/components/schemas/PurchaseOrder"
    },
    "_raw": {
      "$ref": "#/components/schemas/Raw"
    }
  }
}