openapi: 3.0.3 info: title: Factset Analytics Datastore About Phone 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: Phone paths: /v1/phone-number-types: get: tags: - Phone summary: Factset Get List of the Phone Types Configured in Your Group operationId: GetPhoneNumberTypes responses: '200': description: Success content: application/json: schema: type: array items: $ref: '#/components/schemas/PhoneNumberTypeDto' x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Phone summary: Factset Create a Phone Type operationId: CreatePhoneNumberType requestBody: description: To add phoneNumberType 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/phone-number-types/{phoneNumberTypeId}: put: tags: - Phone summary: Factset Edit a Phone Type operationId: UpdatePhoneNumberType parameters: - name: phoneNumberTypeId in: path description: phoneNumberTypeId to update associated record required: true schema: type: string format: uuid requestBody: description: Update with phoneNumberType 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: - Phone summary: Factset Delete a Phone Type operationId: DeletePhoneNumberType parameters: - name: phoneNumberTypeId in: path description: phoneNumberTypeId for deleting 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: {} PhoneNumberTypeDto: type: object properties: id: type: string format: uuid example: abc123 name: maxLength: 50 minLength: 0 type: string nullable: true example: Example Title isStandard: type: boolean example: true 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