我现在无法通过匹配Assignment_group从服务中检索票证。我现在使用pysnow并使用表api从服务中检索票证。
下面是我的代码:
import pysnow
c = pysnow.Client(instance='myinstance', user='username', password='password')
incident = c.resource(api_path='/table/incident')
#getting the assignment group of a ticket
print ("tickets are")
response = incident.get(query={'number': 'INC0010020'}, stream=True)
a = response['assignment_group']
print (a)
#using the same assigment group above to fetch more tickets
response = incident.get(query={'assignment_group' : a}, stream=True)
print (response.one())
我得到以下结果:
答案 0 :(得分:0)
尝试在第2行之后添加以下内容:
c.parameters.exclude_reference_link = True
答案 1 :(得分:0)
您的'a'变量是一个JSON对象。尝试使用a.value 使用响应时也要小心。如果响应以字符串形式出现,则可能需要使用JSON.parse