Skip to content

IntegrationDetailsType

Parsed integration details extracted from long_description

Fields

available_for · [IntegrationPlanTiersType!] · Plan tiers the integration is available for
extra_info · String · Any additional information below the long description
fee · String · The integration fee description
formatted_description · String · The cleaned long description with tags removed
deprecated This field is being deprecated in favor of structured jsonb data in integration_option
is_setup_required · Boolean · Whether the integration needs to be setup for the user or if automatically is enabled

Used By

Definition

"""
Parsed integration details extracted from long_description
"""
type IntegrationDetailsType {
"""
Plan tiers the integration is available for
"""
available_for: [IntegrationPlanTiersType!]
"""
Any additional information below the long description
"""
extra_info: String
"""
The integration fee description
"""
fee: String
"""
The cleaned long description with tags removed
"""
formatted_description: String
@deprecated(
reason: "This field is being deprecated in favor of structured jsonb data in integration_option"
)
"""
Whether the integration needs to be setup for the user or if automatically is enabled
"""
is_setup_required: Boolean
}