documentationUrl: https://docsurl.com connectionSpecification: $schema: http://json-schema.org/draft-07/schema# title: ClickUp Api Spec type: object required: - api_token additionalProperties: true properties: # 'TODO: This schema defines the configuration required for the source. This usually involves metadata such as database and/or authentication information.': api_token: type: string description: >- Every ClickUp API call required authentication. This field is your personal API token. See here. airbyte_secret: true team_id: type: string description: >- The ID of your team in ClickUp. Retrieve it from the `/team` of the ClickUp API. See here. space_id: type: string description: >- The ID of your space in your workspace. Retrieve it from the `/team/{team_id}/space` of the ClickUp API. See here. folder_id: type: string description: >- The ID of your folder in your space. Retrieve it from the `/space/{space_id}/folder` of the ClickUp API. See here. list_id: type: string description: >- The ID of your list in your folder. Retrieve it from the `/folder/{folder_id}/list` of the ClickUp API. See here. include_closed_tasks: title: Include Closed Tasks type: boolean default: false description: >- Include or exclude closed tasks. By default, they are excluded. See here.