Exemple #1
0
    def get(self):
        """GET operation for the endpoint class.

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api("allunusualjobsendpoint")
Exemple #2
0
    def get(self):
        """GET operation for the endpoint class.

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api('allunusualjobsendpoint')
Exemple #3
0
    def get(self):
        """GET operation for the endpoint class.

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api("skillnameautocompleteendpoint")
Exemple #4
0
    def get(self):
        """GET operation for the endpoint class.

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api('skillnameautocompleteendpoint')
Exemple #5
0
    def get(self, id=None):
        """GET operation for the endpoint class.

        Args:
            id: Optional skill UUID.

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api("skillnameandfrequencyendpoint", id=id)
Exemple #6
0
    def get(self, id=None):
        """GET operation for the endpoint class.

        Args:
            id: Optional job UUID.

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api("associatedjobsforjobendpoint", id=id)
Exemple #7
0
    def get(self, id=None):
        """GET operation for the endpoint class.

        Args:
            id: Optional skill UUID.

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api('skillnameandfrequencyendpoint', id=id)
Exemple #8
0
    def get(self, id=None):
        """GET operation for the endpoint class.

        Args:
            id: Optional job UUID.

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api('associatedjobsforjobendpoint', id=id)
Exemple #9
0
    def get(self, id=None):
        """GET operation for the endpoint class.

        Args:
            id: Optional O*NET SOC Code to query for. All job titles if none
            specified. 

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api("jobtitlefromonetcodeendpoint", id=id)
Exemple #10
0
    def get(self, id=None):
        """GET operation for the endpoint class.

        Args:
            id: Optional O*NET SOC Code to query for. All job titles if none
            specified. 

        Returns: 
            A redirect to the appropriate API version as specified by the 
            accept or custom header.

        """
        return route_api('jobtitlefromonetcodeendpoint', id=id)