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

# Submit job posting application

> Submit an application for a publically posted job.



## OpenAPI

````yaml /api-reference/openapi-public.json post /{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}
openapi: 3.0.0
info:
  title: Spott API
  description: ''
  version: '1.0'
  contact: {}
servers:
  - url: https://api.gospott.com
security: []
tags:
  - name: public
    description: ''
paths:
  /{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}:
    post:
      tags:
        - public
      summary: Submit job posting application
      description: Submit an application for a publically posted job.
      operationId: handleApplicationForPublicJobBoardPosting
      parameters:
        - name: publicTenantSlug
          required: true
          in: path
          schema:
            type: string
        - name: jobBoardPostingId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublicJobBoardPostingApplicationDto'
      responses:
        '200':
          description: ''
components:
  schemas:
    PublicJobBoardPostingApplicationDto:
      type: object
      properties:
        firstName:
          type: string
          minLength: 1
          maxLength: 100
          pattern: /^[a-zA-ZÀ-ÿ\s\-']+$/
        lastName:
          type: string
          minLength: 1
          maxLength: 100
          pattern: /^[a-zA-ZÀ-ÿ\s\-']+$/
        cvAttachmentId:
          type: string
          minLength: 1
          maxLength: 100
        email:
          type: string
          format: email
          minLength: 3
          maxLength: 254
        phoneNumber:
          type: string
          minLength: 1
          maxLength: 20
        linkedinUrl:
          type: string
          nullable: true
          format: uri
          minLength: 1
          maxLength: 2048
      required:
        - firstName
        - lastName
        - cvAttachmentId
        - email
        - phoneNumber
        - linkedinUrl

````