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

# Get User Subscriptions

> Get all watchlist subscriptions for a user



## OpenAPI

````yaml get /watchlist/subscriptions
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /watchlist/subscriptions:
    get:
      tags:
        - Watchlist
      summary: Get User Subscriptions
      description: Get all watchlist subscriptions for a user
      operationId: get_user_subscriptions_watchlist_subscriptions_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WatchlistSubscriptionResponse'
                type: array
                title: Response Get User Subscriptions Watchlist Subscriptions Get
      security:
        - HTTPBearer: []
components:
  schemas:
    WatchlistSubscriptionResponse:
      properties:
        id:
          type: string
          title: Id
        user_id:
          type: string
          title: User Id
        company_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Id
        company_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Name
        company_register_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Register Number
        person_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Id
        person_full_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Full Name
        person_birth_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Person Birth Date
        is_active:
          type: boolean
          title: Is Active
        configs:
          items:
            $ref: '#/components/schemas/WatchlistSubscriptionConfig'
          type: array
          title: Configs
          default: []
      type: object
      required:
        - id
        - user_id
        - is_active
      title: WatchlistSubscriptionResponse
    WatchlistSubscriptionConfig:
      properties:
        id:
          type: string
          title: Id
        subscription_id:
          type: string
          title: Subscription Id
        event_type:
          type: string
          title: Event Type
      type: object
      required:
        - id
        - subscription_id
        - event_type
      title: WatchlistSubscriptionConfig
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````