Ejemplo n.º 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")
Ejemplo n.º 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')
Ejemplo n.º 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")
Ejemplo n.º 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')
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)