Airbyte · Schema

Root Type for OrganizationOAuthCredentials

POST body for creating/updating organization level OAuth credentials

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
actorType object
name string The name of the source i.e. google-ads
configuration object
View JSON Schema on GitHub

JSON Schema

airbyte-organizationoauthcredentialsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrganizationOAuthCredentialsRequest",
  "title": "Root Type for OrganizationOAuthCredentials",
  "description": "POST body for creating/updating organization level OAuth credentials",
  "required": [
    "actorType",
    "name",
    "configuration"
  ],
  "type": "object",
  "properties": {
    "actorType": {
      "$ref": "#/components/schemas/ActorTypeEnum"
    },
    "name": {
      "type": "string",
      "description": "The name of the source i.e. google-ads"
    },
    "configuration": {
      "$ref": "#/components/schemas/OAuthCredentialsConfiguration"
    }
  },
  "x-speakeasy-component": true
}