Beispiel #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")
Beispiel #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')
Beispiel #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")
Beispiel #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')
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)
Beispiel #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)