Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 3.54 KB

File metadata and controls

33 lines (28 loc) · 3.54 KB

CollectionTicketCommentInput

Example Usage

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

let value: CollectionTicketCommentInput = {
  body: "What internet provider do you use?",
  passThrough: [
    {
      serviceId: "<id>",
      extendPaths: [
        {
          path: "$.nested.property",
          value: {
            "TaxClassificationRef": {
              "value": "EUC-99990201-V1-00020000",
            },
          },
        },
      ],
    },
  ],
};

Fields

Field Type Required Description Example
body string Body of the comment What internet provider do you use?
passThrough components.PassThroughBody[] The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources.