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

# Trigger Source



## OpenAPI

````yaml POST /api/v1/sources/{slug}/trigger/
openapi: 3.0.3
info:
  title: Nekt API
  version: v1
  description: Nekt API Documentation
  contact:
    email: support@nekt.ai
servers:
  - url: https://api.nekt.ai
security: []
paths:
  /api/v1/sources/{slug}/trigger/:
    post:
      tags:
        - v1
      operationId: v1_sources_trigger_create
      parameters:
        - in: path
          name: slug
          schema:
            type: string
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TriggerSource'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/TriggerSource'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/TriggerSource'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TriggerSource'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    TriggerSource:
      type: object
      properties:
        full_sync:
          type: boolean
          writeOnly: true
          default: false
        extra_config:
          writeOnly: true
        selected_streams:
          type: array
          items:
            type: string
          writeOnly: true
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````