> ## 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.

# Share issue

> Gets the company share issues



## OpenAPI

````yaml get /datasets/companies/{companyId}/share-issue
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/companies/{companyId}/share-issue:
    get:
      tags:
        - Companies
      summary: Share issue
      description: Gets the company share issues
      operationId: CompanyShareIssue
      parameters:
        - name: companyId
          in: path
          description: The company id
          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_Company_CompanyShareIssue_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Company_CompanyShareIssue_Dto:
      type: object
      properties:
        companyShareIssueId:
          type: integer
          format: int32
        iso4217CurrencyCode:
          type: string
          nullable: true
        decidedByCode:
          type: string
          nullable: true
        decidedBy:
          type: string
          nullable: true
        decisionDate:
          type: string
          format: date-time
          nullable: true
        hasNotBeenFullyPaid:
          type: boolean
          nullable: true
        amount:
          type: number
          format: double
          nullable: true
        lowerAmount:
          type: number
          format: double
          nullable: true
        highestAmount:
          type: number
          format: double
          nullable: true
        nominalValue:
          type: number
          format: double
          nullable: true
        numberOfShares:
          type: integer
          format: int64
          nullable: true
        paidAmountWithPremium:
          type: number
          format: double
          nullable: true
        sharesPaidInPartial:
          type: integer
          format: int64
          nullable: true
        partiallyPaidAmount:
          type: number
          format: double
          nullable: true
        sharesPaidInFull:
          type: integer
          format: int64
          nullable: true
        paidInFullAmount:
          type: number
          format: double
          nullable: true
        reduceShareCapitalByNotPaidInFull:
          type: number
          format: double
          nullable: true
        reduceNumberOfSharesByNotPaidInFull:
          type: integer
          format: int64
          nullable: true
        paidInCash:
          type: boolean
          nullable: true
        paidByPropertyInKind:
          type: boolean
          nullable: true
        paidByOffset:
          type: boolean
          nullable: true
        isPartialRegistration:
          type: boolean
          nullable: true
        notes:
          type: string
          nullable: true
        firstSeenAtUtc:
          type: string
          format: date-time
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
        caseYear:
          type: integer
          format: int32
          nullable: true
        caseNumber:
          type: integer
          format: int32
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````