Ampersand · JSON Structure

Ampersand Api Provider App Metadata Structure

Provider-specific configuration that extends the standard OAuth flow.

Type: object Properties: 2
Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks

ProviderAppMetadata is a JSON Structure definition published by Ampersand, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

authQueryParams providerParams

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/ampersand/refs/heads/main/json-structure/ampersand-api-provider-app-metadata-structure.json",
  "name": "ProviderAppMetadata",
  "description": "Provider-specific configuration that extends the standard OAuth flow.",
  "type": "object",
  "properties": {
    "authQueryParams": {
      "type": "object",
      "description": "Additional query parameters to include in the OAuth authorization URL (e.g., optional_scope for HubSpot).",
      "additionalProperties": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "example": {
        "optional_scope": [
          "automation.sequences.read"
        ]
      }
    },
    "providerParams": {
      "type": "object",
      "description": "Provider-specific string values keyed by names (e.g., packageInstallURL for Salesforce, gcpProjectId and gcpPubSubTopicName for Gmail).",
      "additionalProperties": {
        "type": "string"
      },
      "example": {
        "packageInstallURL": "https://login.salesforce.com/packaging/installPackage.apexp?p0=04t123456789",
        "gcpProjectId": "my-gcp-project",
        "gcpPubSubTopicName": "my-topic"
      }
    }
  }
}