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

# Bankgironumbers

> Lists bankgironumbers belonging to the company

This endpoint replaces the older [bank accounts](bank-accounts) endpoint.


## OpenAPI

````yaml get /datasets/companies/{companyId}/se/bankgironumbers
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}/se/bankgironumbers:
    get:
      tags:
        - Companies_SE_
      summary: Bankgironumbers
      description: Lists bankgironumbers belonging to the company
      operationId: CompanySalaryContributions
      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_Library_Dtos_Bankgirot_Bankgironumber_Dto
components:
  schemas:
    Ormeo_Library_Dtos_Bankgirot_Bankgironumber_Dto:
      type: object
      properties:
        companyId:
          type: integer
          format: int32
          nullable: true
        updatedAt:
          type: string
          format: date-time
          nullable: true
        updateType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_BankgirotUpdateType'
        bankgironumber:
          type: integer
          format: int32
          nullable: true
        terminated:
          type: boolean
          nullable: true
        name:
          type: string
          nullable: true
        isTaxBankgironumber:
          type: boolean
          nullable: true
        ocrType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_BankgirotOCRType'
        ocrReferenceLength1:
          type: integer
          format: int32
          nullable: true
        ocrReferenceLength2:
          type: integer
          format: int32
          nullable: true
        addressLine1:
          type: string
          nullable: true
        addressLine2:
          type: string
          nullable: true
        addressLine3:
          type: string
          nullable: true
        addressLine4:
          type: string
          nullable: true
        addressLine5:
          type: string
          nullable: true
        postalCode:
          type: string
          nullable: true
        city:
          type: string
          nullable: true
      additionalProperties: false
    Ormeo_Library_Entities_BankgirotUpdateType:
      enum:
        - inserted
        - deleted
        - updated
      type: string
    Ormeo_Library_Entities_BankgirotOCRType:
      enum:
        - notConnectedToOCR
        - connectedToOCRSoftCheckLevel
        - connectedToOCRHardCheckLevel
        - connectedToOCRHardCheckLevelVariableLength
        - connectedToOCRHardCheckLevelFixedLength
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````