Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 7.22 KB

File metadata and controls

27 lines (22 loc) · 7.22 KB

ProxyDeleteProxyRequest

Example Usage

import { ProxyDeleteProxyRequest } from "@apideck/unify/models/operations";

let value: ProxyDeleteProxyRequest = {
  serviceId: "close",
  unifiedApi: "hris",
  downstreamUrl: "https://api.close.com/api/v1/lead",
  downstreamAuthorization: "Bearer <token>",
  timeout: 30000,
};

Fields

Field Type Required Description Example
consumerId string ID of the consumer which you want to get or push data from test-consumer
appId string The ID of your Unify application dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX
serviceId string ✔️ Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. close
unifiedApi string Specify which unified API to use for the connection lookup. Required for multi-API connectors (e.g., Workday) to ensure the correct credentials are used. hris
downstreamUrl string ✔️ Downstream URL https://api.close.com/api/v1/lead
downstreamAuthorization string Downstream authorization header. This will skip the Vault token injection. Bearer
timeout number Override the default downstream request timeout in milliseconds. The default is 28000 (28 seconds). 30000