Zapier · JSON Structure

Partner Api Whitelabel App Structure

An app available for whitelabel connection.

Type: object Properties: 8 Required: 8
IntegrationsiPaaS

WhitelabelApp is a JSON Structure definition published by Zapier, describing 8 properties, of which 8 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type id title image is_oauth has_fields has_byoc links

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-structure/partner-api-whitelabel-app-structure.json",
  "name": "WhitelabelApp",
  "description": "An app available for whitelabel connection.",
  "type": "object",
  "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": "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"
  ]
}