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

# Create Subscription

> Create a new watchlist subscription for a company or person



## OpenAPI

````yaml post /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:
    post:
      tags:
        - Watchlist
      summary: Create Subscription
      description: Create a new watchlist subscription for a company or person
      operationId: create_subscription_watchlist_subscriptions_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WatchlistSubscriptionCreate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WatchlistSubscriptionCreateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    WatchlistSubscriptionCreate:
      properties:
        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
        event_types:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Event Types
      type: object
      required:
        - user_id
      title: WatchlistSubscriptionCreate
    WatchlistSubscriptionCreateResponse:
      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
      type: object
      required:
        - id
        - user_id
        - is_active
      title: WatchlistSubscriptionCreateResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````