我现在无法通过匹配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())
我得到以下结果:
最佳答案
尝试在第2行之后添加以下内容:
c.parameters.exclude_reference_link = True
关于python - 无法使用assignment_group来立即获取服务票证,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54842886/