Skip to content

Instantly share code, notes, and snippets.

@bruno2ms
Created April 25, 2016 21:15
Show Gist options
  • Save bruno2ms/61e76d02e5df8230741ca74893a9d6d8 to your computer and use it in GitHub Desktop.
Save bruno2ms/61e76d02e5df8230741ca74893a9d6d8 to your computer and use it in GitHub Desktop.
GET
https://cliente.acelerato.com/v2/tickets/{ticket_id}/comentarios
{
"links": [],
"content": [
{
"requestUUID": "e3321301-d502-475e-9329-c5417d51d5c3",
"ticketComentarioKey": 503,
"usuarioKey": 11,
"ticketKey": 540,
"dataCricao": "25/04/2016 17:59:03",
"dataEdicao": "25/04/2016 17:59:03",
"texto": "<html>\n <head></head>\n <body>\n Oi\n </body>\n</html>",
"privado": false,
"usuariosParaNotificar": null,
"links": [
{
"rel": "self",
"href": "https://comercialbluesoft.acelerato.com/app/v2/tickets/540/comentarios/503"
}
]
}
]
}
POST
https://cliente.acelerato.com/v2/tickets/{ticket_id}/comentarios
{
"texto": "<html>\n <head></head>\n <body>\n Oi\n </body>\n</html>",
"privado": false
}
PUT
https://cliente.acelerato.com/v2/tickets/{ticket_id}/comentarios/{comentario_key}
{
"texto": "<html>\n <head></head>\n <body>\n Oi oi oi oi \n </body>\n</html>"
}
DELETE
https://cliente.acelerato.com/v2/tickets/{ticket_id}/comentarios/{comentario_key}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment