openapi: 3.0.3 info: title: Factset Analytics Datastore About Roles 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: Roles paths: /v1/contact-roles: get: tags: - Roles summary: Factset Get List of the Contact Roles Configured in Your Group operationId: GetContactRoles responses: '200': description: Success content: application/json: schema: type: array items: $ref: '#/components/schemas/ContactRoleDto' x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Roles summary: Factset Create Contact Roles operationId: CreateContactRole requestBody: description: Contact role name content: application/json-patch+json: schema: maxLength: 50 minLength: 0 type: string application/json: schema: maxLength: 50 minLength: 0 type: string text/json: schema: maxLength: 50 minLength: 0 type: string application/*+json: schema: maxLength: 50 minLength: 0 type: string required: true responses: '201': description: Created content: application/json: schema: $ref: '#/components/schemas/NewItemDto' '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' default: description: Error content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' x-microcks-operation: delay: 0 dispatcher: FALLBACK /v1/contact-roles/{contactRoleId}: put: tags: - Roles summary: Factset Edit a Contact Role operationId: UpdateContactRole parameters: - name: contactRoleId in: path description: contactRoleId to update associated record required: true schema: type: string format: uuid requestBody: description: Updated contact role name content: application/json-patch+json: schema: maxLength: 50 minLength: 0 type: string application/json: schema: maxLength: 50 minLength: 0 type: string text/json: schema: maxLength: 50 minLength: 0 type: string application/*+json: schema: maxLength: 50 minLength: 0 type: string required: true responses: '204': description: No Content '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' default: description: Error content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Roles summary: Factset Delete a Contact Role operationId: DeleteContactRole parameters: - name: contactRoleId in: path description: contactRoleId to delete associated record required: true schema: type: string format: uuid responses: '200': description: Success '400': description: Bad Request content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' default: description: Error content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: ProblemDetails: type: object properties: type: type: string nullable: true example: example_value title: type: string nullable: true example: Example Title status: type: integer format: int32 nullable: true example: 10 detail: type: string nullable: true example: example_value instance: type: string nullable: true example: example_value additionalProperties: {} ContactRoleDto: required: - id - name type: object properties: id: type: string format: uuid example: abc123 name: maxLength: 50 minLength: 0 type: string example: Example Title additionalProperties: false NewItemDto: type: object properties: id: type: string format: uuid example: abc123 additionalProperties: false securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation