how to create internal notes
RespondidaHi All, need your help.
I want to create ticket but the type is internal notes.
What fields that i should sent ?
Thanks.
-
Hi Anggara,
You should add a "public": false attribute to the ticket payload:
POST /api/v2/tickets
{"ticket": {
"comment": {
"body": "The smoke is very colorful.",
"public": false},
"subject": "My printer is on fire!"
}}
-
Hi Anggara
Use Update Ticket Api :
https://developer.zendesk.com/api-reference/ticketing/tickets/tickets/#update-ticket
And Json :
{"ticket": { "comment": { "body": "Internal comment \n Next Line comment", "public": false }}}
Or :
{"ticket": { "comment": { "html_body": "Internal comment <BR> Next line comment", "public": false }}}
"public" : false do it.
Serge.
-
Thx All.
I already use public : false.
But it still display as Public Reply like above.
This is my request :
{
"ticket": {
"subject": "[tes] Cancel Order",
"comment": {
"body": "tes aja ini lagi",
"public": false
},
"custom_fields": [
{
"id": 360027861593,
"value": "tes"
},
{
"id": 360027811414,
"value": "seller"
},
{
"id": 360027866734,
"value": "AWB Number"
},
{
"id": 360027852353,
"value": "request_cancel_order"
}]
}
} -
Hi Anggara,
The screenshot actually shows a private reply (Highlighted in yellowish).
-
Sorry I mean how to make it as internal notes :
Thanks. -
Hi Anggara
I am a bit confused. Did you mean you want to convert an already published comment from public to internal?
Por favor, entrar para comentar.
6 Comentários