openapi: 3.0.3 info: title: Factset Analytics Datastore About Template List API description: Allow clients to fetch precalculated Analytics through predeterministic URLs. contact: name: FactSet Research Systems url: https://developer.factset.com/contact email: api@factset.com license: name: Apache License, Version 2.0 url: https://www.apache.org/licenses/LICENSE-2.0 version: 1.0.0 servers: - url: https://api.factset.com description: Production - url: https://api-sandbox.factset.com description: Sandbox security: - basicAuth: [] tags: - name: Template List paths: /v1/template-list: get: tags: - Template List summary: Factset Retrieves the list of templates that are available description: A template is a predefined list of content to be compiled in a PDF. This end point works without any parameters and retrieves the list of templates available for the user. Templates need to defined/created in FactSet workstation. responses: '200': description: Successful response contains an array with template name, template ID, created date, template source and template type content: application/json: schema: $ref: '#/components/schemas/Enable_Template_Info' '401': description: Missing or invalid authentication components: schemas: Enable_Template_Info: title: Template Request description: Request to enable template list information for the client. type: array items: properties: template_id: type: string description: Template ID example: 20200623094829450 template_name: type: string description: Template name example: Financials created_on: type: string description: Date on which the template was created example: 2020-6-23 9:48 template_source: type: string description: Source of the template - Custom vs. Default example: own_template type: type: string description: Type of the template example: Public securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation