> ## Documentation Index
> Fetch the complete documentation index at: https://docs.decodahealth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Platforms

> Every connected/known platform for the tenant, with status.

The integrations UI joins this against its descriptor registry —
platforms the tenant has never connected aren't returned here.



## OpenAPI

````yaml get /opportunity/platforms
openapi: 3.1.0
info:
  title: Decoda API
  description: External API documentation for the Decoda Health platform.
  version: '1.0'
servers: []
security: []
paths:
  /opportunity/platforms:
    get:
      tags:
        - Marketing Platforms
      summary: List Platforms
      description: |-
        Every connected/known platform for the tenant, with status.

        The integrations UI joins this against its descriptor registry —
        platforms the tenant has never connected aren't returned here.
      operationId: list_platforms_opportunity_platforms_get
      parameters:
        - name: TENANT
          in: header
          required: true
          schema:
            type: string
            title: Tenant
          description: The tenant you are making this request on behalf of
        - name: API-KEY
          in: header
          required: true
          schema:
            type: string
            title: Api-Key
          description: Your api key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/PlatformConnectionStatus'
                type: array
                title: Response List Platforms Opportunity Platforms Get
components:
  schemas:
    PlatformConnectionStatus:
      properties:
        connected:
          type: boolean
          title: Connected
        platformId:
          anyOf:
            - type: string
            - type: 'null'
          title: Platformid
        platformType:
          anyOf:
            - $ref: '#/components/schemas/PlatformType'
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        assets:
          items:
            $ref: '#/components/schemas/PlatformAssetSummary'
          type: array
          title: Assets
          default: []
      type: object
      required:
        - connected
      title: PlatformConnectionStatus
    PlatformType:
      type: string
      enum:
        - GOOGLE_ADS
        - META_ADS
        - WEB_FORM
        - CUSTOM
      title: PlatformType
    PlatformAssetSummary:
      properties:
        id:
          type: string
          title: Id
        assetKind:
          type: string
          title: Assetkind
        externalAssetId:
          type: string
          title: Externalassetid
        externalName:
          anyOf:
            - type: string
            - type: 'null'
          title: Externalname
        parentExternalAssetId:
          anyOf:
            - type: string
            - type: 'null'
          title: Parentexternalassetid
        leadAccessGranted:
          type: boolean
          title: Leadaccessgranted
          default: false
        subscribedFields:
          items:
            type: string
          type: array
          title: Subscribedfields
          default: []
        isArchived:
          type: boolean
          title: Isarchived
          default: false
      type: object
      required:
        - id
        - assetKind
        - externalAssetId
      title: PlatformAssetSummary

````