I'm using go and zendesk api to create tickets on behalf of a user, but I don't want the ticket creation email to be sent to the user. Is there any way to achieve this? This is my implementation:
func CreateZendeskTicket(title, body, email string) error { ticket := ZendeskTicket{ Ticket: Ticket{ Comment: Comment{ Body: body, }, Priority: "normal", Subject: title, Requester: Requester{ Email: email, }, }, } payload, err := json.Marshal(ticket) if err != nil { return err } url, _ := url.JoinPath(configs.CONFIG.Zendesk.BaseURL, "api/v2/tickets.json") req, err := http.NewRequest("POST", url, bytes.NewBuffer(payload)) if err != nil { return err } req.Header.Set("Content-Type", "application/json") req.Header.Set("Authorization", "Basic "+configs.CONFIG.Zendesk.APIKey) client := &http.Client{} res, err := client.Do(req) if err != nil { return err } defer res.Body.Close() if res.StatusCode != 201 { return errors.New("Failed to create ticket: " + res.Status) } return nil }
I finally found a way.
The above is the detailed content of Create a ticket on zendesk on behalf of user without sending email. For more information, please follow other related articles on the PHP Chinese website!