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

# University Degree

> ### Retrieve University

This endpoint makes an HTTP GET request to retrieve a list of university degree.

#### Request

- Method: GET
    
- URL: `/v1/general/university-degree`
    

**Query**

- lang: Optional | default de
    

#### Response

- Status: 200
    
- Content-Type: application/json
    

Example response body:

``` json
{
    "message":"Success",
    "status":200,
    "data":[
        {
            "id": 1,
            "name":"Bachelor of science"
        }
    ]
}

 ```



## OpenAPI

````yaml get /v1/general/university-degrees
openapi: 3.0.0
info:
  title: Pauls Job Public Endpoints
  description: >-
    #### **Description:**


    This API provides a comprehensive suite of endpoints for managing user
    authentication, session control, and other key functionalities within the
    application for Pauls Job. The endpoints are designed to ensure secure and
    efficient communication between clients and the server, offering robust
    access control mechanisms through token-based authentication.


    #### **Key Features:**


    - **Authentication:** Allows users to securely log in using their
    credentials and receive a token for accessing protected resources.
        
    - **Session Management:** Provides a logout mechanism to securely end user
    sessions and invalidate tokens.
        
    - **Error Handling:** Clear and descriptive error messages ensure that
    issues such as invalid credentials, expired tokens, or missing parameters
    are easily identifiable.
        

    This API is built with a focus on security and ease of use, making it
    essential for integrating user authentication and session management into
    applications while maintaining a high standard of data protection.
  version: 1.0.0
servers:
  - url: https://api.hyrd.de
security: []
tags:
  - name: Users
    description: >-
      #### **Description:**


      The folder contains the foundational information and essential API
      endpoints for starting with the authentication and session management of
      the application. This includes the critical login and logout
      functionalities, which are necessary for users to authenticate and manage
      their sessions securely.


      #### **APIs Included:**


      1. **Login API**: Allows users to log in by providing their credentials
      and receive an authentication token.
          
      2. **Logout API**: Enables users to log out by invalidating the token and
      ending their session.
          

      These endpoints are designed to facilitate secure access control and
      session handling, making them an essential starting point for any
      interaction with the platform's protected resources.
  - name: General
  - name: Company
  - name: Company > Candidate
  - name: Company > Api Integrations
paths:
  /v1/general/university-degrees:
    get:
      tags:
        - General
      summary: University Degree
      description: >-
        ### Retrieve University


        This endpoint makes an HTTP GET request to retrieve a list of university
        degree.


        #### Request


        - Method: GET
            
        - URL: `/v1/general/university-degree`
            

        **Query**


        - lang: Optional | default de
            

        #### Response


        - Status: 200
            
        - Content-Type: application/json
            

        Example response body:


        ``` json

        {
            "message":"Success",
            "status":200,
            "data":[
                {
                    "id": 1,
                    "name":"Bachelor of science"
                }
            ]
        }

         ```
      parameters:
        - name: lang
          in: query
          schema:
            type: string
          example: en
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
              example: |-
                {
                    "message": "Success",
                    "status": 200,
                    "data": [
                        {
                            "id": 1,
                            "value": "Bachelor of Arts"
                        },
                        {
                            "id": 2,
                            "value": "Bachelor of Science"
                        },
                        {
                            "id": 3,
                            "value": "Bachelor of Engineering"
                        },
                        {
                            "id": 4,
                            "value": "Bachelor of Laws"
                        },
                        {
                            "id": 5,
                            "value": "Bachelor of Education"
                        },
                        {
                            "id": 6,
                            "value": "Bachelor of Music"
                        },
                        {
                            "id": 7,
                            "value": "Bachelor of Fine Arts"
                        },
                        {
                            "id": 8,
                            "value": "Bachelor of Musical Arts"
                        },
                        {
                            "id": 9,
                            "value": "Master of Arts"
                        },
                        {
                            "id": 10,
                            "value": "Master of Science"
                        },
                        {
                            "id": 11,
                            "value": "Master of Engineering"
                        },
                        {
                            "id": 12,
                            "value": "Master of Laws"
                        },
                        {
                            "id": 13,
                            "value": "Master of Education"
                        },
                        {
                            "id": 14,
                            "value": "Master of Music"
                        },
                        {
                            "id": 15,
                            "value": "Master of Fine Arts"
                        },
                        {
                            "id": 16,
                            "value": "Master of Musical Arts"
                        },
                        {
                            "id": 17,
                            "value": "Magister Artium"
                        },
                        {
                            "id": 18,
                            "value": "Magister Legum"
                        },
                        {
                            "id": 19,
                            "value": "Erstes Staatsexamen"
                        },
                        {
                            "id": 20,
                            "value": "Zweites Staatsexamen"
                        },
                        {
                            "id": 21,
                            "value": "Promotion"
                        },
                        {
                            "id": 22,
                            "value": "MBA"
                        },
                        {
                            "id": 23,
                            "value": "Diplom"
                        },
                        {
                            "id": 24,
                            "value": "Vollzeit"
                        }
                    ]
                }

````