> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Notes

> Get notes for a given ICA store id



## OpenAPI

````yaml get /datasets/se/ica/stores/{icaStoreId}/notes
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /datasets/se/ica/stores/{icaStoreId}/notes:
    get:
      tags:
        - ICA
      summary: Notes
      description: Get notes for a given ICA store id
      operationId: ICANotes
      parameters:
        - name: icaStoreId
          in: path
          description: The id of the ICA store
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_StoreNote_Dto
        '404':
          description: Not Found
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_StoreNote_Dto:
      type: object
      properties:
        icA_StoreNoteId:
          type: integer
          format: int32
        icA_StoreId:
          type: integer
          format: int32
        period:
          type: integer
          format: int32
          nullable: true
        date:
          type: string
          format: date-time
          nullable: true
        type:
          type: string
          nullable: true
        notes:
          type: string
          nullable: true
        attribute1:
          type: string
          nullable: true
        attribute2:
          type: string
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````