openapi: 3.0.3 info: title: Factset Analytics Datastore About Custom Symbols 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: Custom Symbols paths: /v1/custom-symbols: get: tags: - Custom Symbols summary: Factset Get list of all custom symbols in your group along with some of their standard field and custom fields data operationId: GetCustomSymbols parameters: - name: typeName in: query description: filter custom symbols based on custom symbol type schema: type: string - name: query in: query description: filter custom symbols based on custom symbol code or name schema: type: string - name: includeCustomFieldValues in: query description: Whether or not to include customFieldValues schema: type: boolean default: false - name: excludeLinkedCustomSymbol in: query description: Whether or not to exclude linked custom symbol schema: type: boolean default: false - name: includeEvent in: query description: Whether or not to include event schema: type: boolean default: true responses: '200': description: Success content: application/json: schema: type: array items: $ref: '#/components/schemas/CustomSymbolDto' '404': description: Not Found content: application/json: schema: type: string default: description: Error content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' post: tags: - Custom Symbols summary: Factset Create a custom symbol operationId: CreateCustomSymbol requestBody: description: createCustomSymbolDto object to save content: application/json-patch+json: schema: $ref: '#/components/schemas/CreateCustomSymbolDto' application/json: schema: $ref: '#/components/schemas/CreateCustomSymbolDto' text/json: schema: $ref: '#/components/schemas/CreateCustomSymbolDto' application/*+json: schema: $ref: '#/components/schemas/CreateCustomSymbolDto' 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' /v1/custom-symbols/{customSymbolId}: get: tags: - Custom Symbols summary: Factset Get all custom field and standard field details on a specific custom symbol operationId: GetCustomSymbol parameters: - name: customSymbolId in: path description: customSymbolId to get associated custom symbol required: true schema: type: string format: uuid - name: includeEvent in: query description: Whether or not to include event schema: type: boolean default: false responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/CustomSymbolDto' patch: tags: - Custom Symbols summary: Factset Edit a custom symbol’s standard field and custom field data operationId: PatchCustomSymbol parameters: - name: customSymbolId in: path description: customSymbolId to update associated custom symbol required: true schema: type: string format: uuid requestBody: description: updateCustomSymbolDto object to update content: application/json-patch+json: schema: type: array items: $ref: '#/components/schemas/Operation' application/json: schema: type: array items: $ref: '#/components/schemas/Operation' text/json: schema: type: array items: $ref: '#/components/schemas/Operation' application/*+json: schema: type: array items: $ref: '#/components/schemas/Operation' 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' delete: tags: - Custom Symbols summary: Factset Delete a custom symbol operationId: DeleteCustomSymbol parameters: - name: customSymbolId in: path description: customSymbolId to delete associated custom symbol 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' /v1/custom-symbols/{customSymbolId}/records: get: tags: - Custom Symbols summary: Factset Get all notes and meetings where a specific customSymbol was tagged as primary or related identifier operationId: GetCustomSymbolRecords parameters: - name: customSymbolId in: path description: CustomSymbolId to get associated records required: true schema: type: string format: uuid responses: '200': description: Success content: application/json: schema: type: array items: $ref: '#/components/schemas/RecordPreviewDto' '404': description: Not Found content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' default: description: Error content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' /v1/custom-symbols/standard-symbol-metadata/{standardSymbol}: get: tags: - Custom Symbols summary: Factset Get all custom field and standard field details on a specific standard symbol operationId: GetStandardSymbolMetadataGuid parameters: - name: standardSymbol in: path description: Standard symbol to get associated customSymbolId required: true schema: type: string responses: '200': description: Success content: application/json: schema: type: string format: uuid '404': description: Not Found content: application/json: schema: type: string default: description: Error content: application/json: schema: $ref: '#/components/schemas/ProblemDetails' /v1/custom-symbols/{customSymbolId}/link-standard-symbol: post: tags: - Custom Symbols summary: Factset Link custom symbol to standard symbol operationId: LinkCustomSymbolToStandardSymbol parameters: - name: customSymbolId in: path description: customSymbolId associated with custom symbol required: true schema: type: string format: uuid requestBody: description: standard symbol name content: application/json-patch+json: schema: $ref: '#/components/schemas/StandardSymbolDto' application/json: schema: $ref: '#/components/schemas/StandardSymbolDto' text/json: schema: $ref: '#/components/schemas/StandardSymbolDto' application/*+json: schema: $ref: '#/components/schemas/StandardSymbolDto' responses: '200': description: Success /v1/custom-symbols/standard-symbol-metadata: post: tags: - Custom Symbols summary: Factset Create standard symbol metadata operationId: CreateStandardSymbolMetadata requestBody: description: createStandardSymbolMetadataDto object to save content: application/json-patch+json: schema: $ref: '#/components/schemas/CreateStandardSymbolMetadataDto' application/json: schema: $ref: '#/components/schemas/CreateStandardSymbolMetadataDto' text/json: schema: $ref: '#/components/schemas/CreateStandardSymbolMetadataDto' application/*+json: schema: $ref: '#/components/schemas/CreateStandardSymbolMetadataDto' 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' /v1/custom-symbols/standard-symbol-metadata/{standardSymbolId}: patch: tags: - Custom Symbols summary: Factset Edit a standard symbol’s standard field and custom field data operationId: PatchStandardSymbol parameters: - name: standardSymbolId in: path description: standardSymbolId to update associated standard symbol required: true schema: type: string format: uuid requestBody: description: updateCustomSymbolDto object to update content: application/json-patch+json: schema: type: array items: $ref: '#/components/schemas/Operation' application/json: schema: type: array items: $ref: '#/components/schemas/Operation' text/json: schema: type: array items: $ref: '#/components/schemas/Operation' application/*+json: schema: type: array items: $ref: '#/components/schemas/Operation' 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' components: schemas: CustomSymbolDto: type: object properties: id: type: string format: uuid code: type: string nullable: true name: type: string nullable: true description: type: string nullable: true type: $ref: '#/components/schemas/CustomSymbolTypeSummaryDto' subType: $ref: '#/components/schemas/CustomSymbolSubTypeSummaryDto' address: $ref: '#/components/schemas/CustomSymbolAddressDto' customFields: type: array items: $ref: '#/components/schemas/CustomSymbolCustomFieldValueDto' nullable: true createdDate: type: string nullable: true createdBy: type: string nullable: true standardSymbol: type: string nullable: true standardSymbolInstrumentData: $ref: '#/components/schemas/InstrumentDto' isAddressAutoFilled: type: boolean isDescriptionAutoFilled: type: boolean additionalProperties: false CustomSymbolAddressDto: type: object properties: googleMapsPlaceId: type: string nullable: true formattedAddress: type: string nullable: true city: type: string nullable: true stateProvince: type: string nullable: true postalCode: type: string nullable: true country: type: string nullable: true additionalProperties: false StandardSymbolDto: required: - standardSymbol type: object properties: standardSymbol: type: string additionalProperties: false NewItemDto: type: object properties: id: type: string format: uuid additionalProperties: false CreateCustomSymbolCustomFieldValueDto: required: - code type: object properties: code: type: string textValue: type: string nullable: true numericValue: type: number format: double nullable: true dateValue: type: string nullable: true extendedTextValue: type: string nullable: true optionValues: type: array items: type: string nullable: true contactIds: type: array items: type: string format: uuid nullable: true additionalProperties: false RecordPreviewDto: type: object properties: noteGuid: type: string format: uuid nullable: true meetingGuid: type: string format: uuid nullable: true title: type: string nullable: true date: type: string format: date-time additionalProperties: false CreateCustomSymbolDto: type: object properties: code: maxLength: 32 minLength: 0 type: string nullable: true name: maxLength: 255 minLength: 0 type: string nullable: true description: type: string nullable: true typeId: type: string format: uuid subTypeId: type: string format: uuid googleMapsPlaceId: maxLength: 255 minLength: 0 type: string nullable: true formattedAddress: maxLength: 255 minLength: 0 type: string nullable: true city: maxLength: 50 minLength: 0 type: string nullable: true stateProvince: maxLength: 50 minLength: 0 type: string nullable: true postalCode: maxLength: 10 minLength: 0 type: string nullable: true country: maxLength: 50 minLength: 0 type: string nullable: true customFieldValues: type: array items: $ref: '#/components/schemas/CreateCustomSymbolCustomFieldValueDto' nullable: true additionalProperties: false CustomSymbolTypeSummaryDto: type: object properties: id: type: string format: uuid name: type: string nullable: true additionalProperties: false InstrumentDto: type: object properties: symbol: type: string nullable: true tickerRegion: type: string nullable: true tickerExchange: type: string nullable: true sedol: type: string nullable: true cusip: type: string nullable: true isin: type: string nullable: true instrumentName: type: string nullable: true identifiers: type: array items: type: string nullable: true additionalProperties: false OperationType: enum: - 0 - 1 - 2 - 3 - 4 - 5 - 6 type: integer format: int32 CustomSymbolCustomFieldValueDto: type: object properties: code: type: string nullable: true value: type: string nullable: true optionValues: type: array items: type: string nullable: true contacts: type: array items: $ref: '#/components/schemas/CustomSymbolContact' nullable: true additionalProperties: false CustomSymbolContact: type: object properties: id: type: string format: uuid name: type: string nullable: true employerName: type: string nullable: true roleName: type: string nullable: true isDeleted: type: boolean irnPersonId: type: string nullable: true additionalProperties: false Operation: type: object properties: operationType: $ref: '#/components/schemas/OperationType' path: type: string nullable: true op: type: string nullable: true from: type: string nullable: true value: nullable: true additionalProperties: false CustomSymbolSubTypeSummaryDto: type: object properties: id: type: string format: uuid name: type: string nullable: true additionalProperties: false ProblemDetails: type: object properties: type: type: string nullable: true title: type: string nullable: true status: type: integer format: int32 nullable: true detail: type: string nullable: true instance: type: string nullable: true additionalProperties: {} CreateStandardSymbolMetadataDto: required: - standardSymbol type: object properties: standardSymbol: maxLength: 255 minLength: 0 type: string description: type: string nullable: true typeId: type: string format: uuid subTypeId: type: string format: uuid googleMapsPlaceId: maxLength: 255 minLength: 0 type: string nullable: true formattedAddress: maxLength: 255 minLength: 0 type: string nullable: true city: maxLength: 50 minLength: 0 type: string nullable: true stateProvince: maxLength: 50 minLength: 0 type: string nullable: true postalCode: maxLength: 10 minLength: 0 type: string nullable: true country: maxLength: 50 minLength: 0 type: string nullable: true customFieldValues: type: array items: $ref: '#/components/schemas/CreateCustomSymbolCustomFieldValueDto' nullable: true additionalProperties: false securitySchemes: basicAuth: type: http scheme: basic externalDocs: url: https://developer.factset.com/api-catalog/analytics-datastore-api description: API Documentation