Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 4.46 KB

File metadata and controls

30 lines (25 loc) · 4.46 KB

PassThroughBody

Example Usage

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

let value: PassThroughBody = {
  serviceId: "<id>",
  extendPaths: [
    {
      path: "$.nested.property",
      value: {
        "TaxClassificationRef": {
          "value": "EUC-99990201-V1-00020000",
        },
      },
    },
  ],
};

Fields

Field Type Required Description
serviceId string ✔️ Identifier for the service to which this pass_through should be applied.
operationId string Optional identifier for a workflow operation to which this pass_through should be applied. This is useful for Unify calls that are making more than one downstream request.
extendObject Record<string, any> Simple object allowing any properties for direct extension.
extendPaths components.ExtendPaths[] Array of objects for structured data modifications via paths.