Zapier · Schema

WhitelabelApp

An app available for whitelabel connection.

IntegrationsiPaaS

Properties

Name Type Description
type string The resource type.
id string The app's unique identifier.
title string The app's display name.
image string URL of the app's icon.
is_oauth boolean Whether the app uses OAuth for authentication.
has_fields boolean Whether the app has input fields a user must fill in when connecting.
has_byoc boolean Whether the app requires the user to supply their own OAuth client credentials (client ID and/or client secret) when connecting. This is a best-effort heuristic based on the app's auth field names and
links object Related URLs for this app.
View JSON Schema on GitHub

JSON Schema

zapier-whitelabelapp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WhitelabelApp",
  "title": "WhitelabelApp",
  "type": "object",
  "description": "An app available for whitelabel connection.",
  "properties": {
    "type": {
      "type": "string",
      "readOnly": true,
      "default": "app",
      "description": "The resource type.",
      "example": "app"
    },
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "The app's unique identifier.",
      "example": "500123"
    },
    "title": {
      "type": "string",
      "description": "The app's display name.",
      "example": "Example Name"
    },
    "image": {
      "type": "string",
      "format": "uri",
      "description": "URL of the app's icon.",
      "example": "https://example.com/path/abc123"
    },
    "is_oauth": {
      "type": "boolean",
      "readOnly": true,
      "description": "Whether the app uses OAuth for authentication.",
      "example": true
    },
    "has_fields": {
      "type": "boolean",
      "readOnly": true,
      "description": "Whether the app has input fields a user must fill in when connecting.",
      "example": true
    },
    "has_byoc": {
      "type": "boolean",
      "readOnly": true,
      "description": "Whether the app requires the user to supply their own OAuth client credentials (client ID and/or client secret) when connecting. This is a best-effort heuristic based on the app's auth field names and labels.",
      "example": true
    },
    "links": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WhitelabelAppLinks"
        }
      ],
      "readOnly": true,
      "description": "Related URLs for this app.",
      "example": "example-value"
    }
  },
  "required": [
    "has_byoc",
    "has_fields",
    "id",
    "image",
    "is_oauth",
    "links",
    "title",
    "type"
  ]
}