Apideck · Schema

PassThroughQuery

IntegrationsUnified API

Properties

Name Type Description
example_downstream_property string All passthrough query parameters are passed along to the connector as is (?pass_through[search]=leads becomes ?search=leads)
View JSON Schema on GitHub

JSON Schema

apideck-passthroughquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PassThroughQuery",
  "title": "PassThroughQuery",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "example_downstream_property": {
      "type": "string",
      "description": "All passthrough query parameters are passed along to the connector as is (?pass_through[search]=leads becomes ?search=leads)"
    }
  },
  "example": {
    "search": "San Francisco"
  }
}