简体   繁体   中英

Trying to create a ticket using freshdesk API in postman

I am trying to create a ticket using the freshdesk api ( https://freshdesk.com/api#create_ticket ) in Postman.

I have used the following: https://companyname.freshdesk.com/helpdesk/tickets.json

{ "helpdesk_ticket": 
  { "description": "Details about the issue..."
  , "subject": "Support Needed..."
  , "email": "tom@outerspace.com"
  , "priority": 1
  , "status": 2 
  }
, "cc_emails": "ram@freshdesk.com,diana@freshdesk.com" 
}

I am getting following response only:

{
    "logout": "success"
}

I have tried clearing my browser cache many times. But the issue remains the same. Please someone suggest.

This must be a bug at the time the question is raised.

Now the API has been updated and it works smoothly, your endpoint should be https://yoururl.freshdesk.com/api/v2/tickets with Authorization Token in the header

我也遇到了同样的问题但是当我创建 ssl 登录并从 curl 检查时,它对我有用。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM