openapi: 3.0.3 info: title: Factset Analytics Datastore About Log 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: Log paths: /analytics/quant/fpe/v1/calculations/{id}/log: get: tags: - Log summary: Factset Get Calculation Log for a Specific Calculation description: This endpoint returns the log from the calculation. parameters: - name: id in: path description: From url, provided by location header or response body in the calculation start endpoint required: true schema: type: string description: From url, provided by location header or response body in the calculation start endpoint responses: '200': description: Expected response. Signals that the calculation is finished. Log from the calculation is returned. headers: X-DataDirect-Request-Key: description: FactSet's request key header. schema: type: string description: FactSet's request key header. content: text/plain: schema: type: string format: binary '202': description: Expected response. Signals that the calculation is still in progress and no log is returned. headers: X-DataDirect-Request-Key: description: FactSet's request key header. schema: type: string description: FactSet's request key header. '500': description: Server error. Log the X-DataDirect-Request-Key header to assist in troubleshooting. headers: X-DataDirect-Request-Key: description: FactSet's request key header. schema: type: string description: FactSet's request key header. '503': description: Request timeout. Retry the request later headers: X-DataDirect-Request-Key: description: FactSet's request key header. schema: type: string description: FactSet's request key header. x-microcks-operation: delay: 0 dispatcher: FALLBACK components: securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation