LoginSignup
0
0

More than 5 years have passed since last update.

Zendesk の REST API で組織を指定してチケットを起票する

Posted at

REST API Documentation の Request parameters には記載されて無かったけど organization_id を指定すれば、その組織のチケットとして起票される。

実際に投げたパラメータ

{
  ticket: { 
    subject: 'ほげほげ', 
    comment: { body: 'ふがふが' }, 
    tags: 'hoge', 
    requester_id: 1234567890, 
    type: 'task', 
    priority: 'normal', 
    organization_id: 12345678
  } 
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0