Je souhaite publier un ticket comme une image uniquement avec l'API Shotgun.
Veuillez modifier la clé API, etc. en fonction de chaque environnement.
import shotgun_api3
SERVER_URL = 'https://tanuki.shotgunstudio.com'
SCRIPT_NAME = 'tanuki_API'
SCRIPT_KEY = 'hondotanuki'
_sg = shotgun_api3.Shotgun(SERVER_URL, SCRIPT_NAME, SCRIPT_KEY)
data = {
'project':{"type" : "Project","id" : 1},
'title' : u"Publier un ticket test"
}
sg_Ticket = _sg.create('Ticket', data)
sg_reply = {
'entity':{
'type':'Ticket',
'id':sg_Ticket["id"]
},
'content':u"tester"
}
_sg.create("Reply",sg_reply)
Créez un ticket à partir de _sg.create ('Ticket', données) et écrivez les détails au format de réponse avec _sg.create ("Reply", sg_reply).
Au minimum, vous devez spécifier un projet pour créer un ticket. La réponse nécessite que l'ID du ticket soit lié.
c'est complet!
https://support.shotgunsoftware.com/hc/ja/community/posts/209486248-Reply-Note-with-API-this-is-possible-
Recommended Posts