> ## Documentation Index
> Fetch the complete documentation index at: https://api-documentation.kare-app.fr/llms.txt
> Use this file to discover all available pages before exploring further.

# Get my organization (RS self-service)



## OpenAPI

````yaml /api/rs/openapi.json get /rs/organizations/v1/me
openapi: 3.0.3
info:
  title: KARE API
  description: Backend API for the KARE platform
  version: dev
servers:
  - url: http://localhost:3000
    description: Local dev
security: []
tags:
  - name: better-auth
    description: >-
      Better Auth's own endpoints (sign-in, session, MFA, password) - generated
      from the audience's live config via `generateOpenAPISchema()`, not
      hand-written.
paths:
  /rs/organizations/v1/me:
    get:
      tags:
        - organizations
      summary: Get my organization (RS self-service)
      operationId: getMyOrganizationRSV1
      parameters:
        - schema:
            type: array
            items:
              type: string
              enum:
                - actions-info
                - updatable-fields
              description: >-
                Extend options (JSON-encoded array, e.g.
                `?extend=["category"]`):

                - "actions-info": Projects `{ canBeUpdated }` for the current
                viewer.

                - "updatable-fields": Per-field write rules for this
                organization in its current state.
          in: query
          name: extend
          required: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    pattern: >-
                      ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                  name:
                    type: string
                    minLength: 1
                    maxLength: 100
                  comment:
                    nullable: true
                    type: string
                    maxLength: 1000
                  language:
                    type: string
                    enum:
                      - fr-FR
                      - en-US
                      - de-DE
                  timezone:
                    type: string
                    minLength: 1
                    maxLength: 100
                  addressCountry:
                    nullable: true
                    type: string
                    minLength: 1
                    maxLength: 200
                  addressCity:
                    nullable: true
                    type: string
                    minLength: 1
                    maxLength: 200
                  addressPostalCode:
                    nullable: true
                    type: string
                    minLength: 1
                    maxLength: 20
                  addressStreet:
                    nullable: true
                    type: string
                    minLength: 1
                    maxLength: 200
                  inboundEmail:
                    type: string
                    format: email
                    pattern: >-
                      ^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$
                  contractType:
                    type: string
                    enum:
                      - kare
                      - kare_pilot
                      - kare_with_monitoring
                      - kare_with_rus
                  engagementStartAt:
                    nullable: true
                    type: string
                    format: date-time
                  engagementEndAt:
                    nullable: true
                    type: string
                    format: date-time
                  renewAt:
                    nullable: true
                    type: string
                    format: date-time
                  uploadSizeLimit:
                    type: integer
                    minimum: 0
                    maximum: 1048576
                  uploadSizeUsedMb:
                    type: integer
                    minimum: 0
                    maximum: 9007199254740991
                  logo:
                    nullable: true
                    type: object
                    properties:
                      name:
                        type: string
                        minLength: 1
                        maxLength: 255
                      mimeType:
                        type: string
                        minLength: 1
                        maxLength: 100
                      size:
                        type: integer
                        minimum: 0
                        exclusiveMinimum: true
                        maximum: 1073741824
                      storageKey:
                        type: string
                        minLength: 1
                        maxLength: 512
                      presignedUrl:
                        type: string
                        format: uri
                    required:
                      - name
                      - mimeType
                      - size
                      - storageKey
                      - presignedUrl
                    additionalProperties: false
                  aiSearchEnabled:
                    type: boolean
                  createdAt:
                    type: string
                    format: date-time
                  actions:
                    type: object
                    properties:
                      canBeUpdated:
                        type: boolean
                    required:
                      - canBeUpdated
                    additionalProperties: false
                  updatableFields:
                    type: object
                    properties:
                      name:
                        type: boolean
                      comment:
                        type: boolean
                      language:
                        type: boolean
                      timezone:
                        type: boolean
                      addressCountry:
                        type: boolean
                      addressCity:
                        type: boolean
                      addressPostalCode:
                        type: boolean
                      addressStreet:
                        type: boolean
                      logo:
                        type: boolean
                    required:
                      - name
                      - comment
                      - language
                      - timezone
                      - addressCountry
                      - addressCity
                      - addressPostalCode
                      - addressStreet
                      - logo
                    additionalProperties: false
                required:
                  - id
                  - name
                  - comment
                  - language
                  - timezone
                  - addressCountry
                  - addressCity
                  - addressPostalCode
                  - addressStreet
                  - inboundEmail
                  - contractType
                  - engagementStartAt
                  - engagementEndAt
                  - renewAt
                  - uploadSizeLimit
                  - uploadSizeUsedMb
                  - logo
                  - aiSearchEnabled
                  - createdAt
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  requestId:
                    type: string
                  details: {}
                required:
                  - error
                  - message
                  - requestId
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  requestId:
                    type: string
                  details: {}
                required:
                  - error
                  - message
                  - requestId
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  requestId:
                    type: string
                  details: {}
                required:
                  - error
                  - message
                  - requestId
                additionalProperties: false

````