Example #1
0
    def put(self,
            checklist_id):
        """
        Edit a checklist.

        """
        raise errors.MethodNotImplementedError()
Example #2
0
    def delete(self,
               checklist_id):
        """
        Delete a checklist.

        """
        raise errors.MethodNotImplementedError()
Example #3
0
    def get(self,
            checklist_id):
        """
        Retrieve a checklist.

        """
        raise errors.MethodNotImplementedError()
Example #4
0
    def get(self, invitation_id):
        """
        Resend an invitation.

        If an invitation's state is 'pending', this endpoint will resend the
        invitation to the associated email address. If an invitation's state
        is 'accepted' or 'cancelled', the invitation cannot be resent. In
        order to resend an invitation, the authenticated user must be an admin
        of the organization that the invitation is associated with.

        Params:
            invitation_id: The id of the invitation to resend

        """
        raise errors.MethodNotImplementedError()
Example #5
0
 def get(self, role_id):
     """
     Retrieve a role
     """
     raise errors.MethodNotImplementedError()
Example #6
0
 def delete(self, role_id, partner_id):
     """
     Unassign a partner from a role
     """
     raise errors.MethodNotImplementedError()
Example #7
0
 def put(self, role_id, partner_id):
     """
     Assign a partner to a role
     """
     raise errors.MethodNotImplementedError()
Example #8
0
 def get(self, role_id):
     """
     List members of a role
     """
     raise errors.MethodNotImplementedError()
Example #9
0
 def delete(self, role_id):
     """
     Delete a role
     """
     raise errors.MethodNotImplementedError()
Example #10
0
 def put(self, role_id):
     """
     Edit a role
     """
     raise errors.MethodNotImplementedError()
Example #11
0
    def post(self, partner_id):
        """
        Add a metric to a partner.

        """
        raise errors.MethodNotImplementedError()
Example #12
0
    def get(self, partner_id):
        """
        List checklists of a partner.

        """
        raise errors.MethodNotImplementedError()
Example #13
0
    def post(self, partner_id):
        """
        Add a checklist to a partner.

        """
        raise errors.MethodNotImplementedError()
Example #14
0
 def get(self, circle_id):
     """
     List roles of a circle
     """
     raise errors.MethodNotImplementedError()
Example #15
0
 def post(self, circle_id):
     """
     Add a role to a circle
     """
     raise errors.MethodNotImplementedError()