Endpoint
/api/v2/tenants/{tenantId}/{ticketType}/{ticketId}/notes/{noteId}
Deletes ticket note.
Path Parameters
tenantIdstring
ticketTypestring
ticketIdstring
noteIdstring
Responses
OK
Endpoint
/api/v2/tenants/{tenantId}/{ticketType}/{ticketId}/notes/{noteId}
Gets a note from a ticket.
Path Parameters
tenantIdstring
ticketTypestring
ticketIdstring
noteIdstring
Responses
OK
createdByobject
Child Parameters
- createdBy.email
- createdBy.firstName
- createdBy.id
- createdBy.lastName
- createdBy.loginName
- createdBy.phoneNumber
createdTimestring
descriptionstring
idinteger
subjectstring
updatedTimestring
{
"createdBy": {
"changePassword": false,
"email": "john.smith@domain.com",
"firstName": "John",
"id": "USR0000002095",
"lastName": "Smith",
"loginName": "John.Smith"
},
"createdTime": "2016-03-03T18:04:37+0000",
"description": "test notes-1-updated",
"id": 15,
"subject": "test notes",
"updatedTime": ""
}
Endpoint
/api/v2/tenants/{tenantId}/{ticketType}/{ticketId}/notes/{noteId}
Updates ticket notes.
Path Parameters
tenantIdstring
ticketTypestring
ticketIdstring
noteIdstring
descriptionstring
{
"description": "Sample Description"
}
Responses
OK
idinteger
subjectstring
{
"id": 15,
"subject": "Sample Note"
}