Delete a remark
Content
Resource URL
https://apps.ticketmatic.com/api/1/{accountname}/contacts/{id}/remarks/{remarkid}
Description
Deletes a specific remark for this contact
Example
Request
1use Ticketmatic\Endpoints\Contacts;
2
3Contacts::deleteremark($client, $id, $remarkid);
Response
This operation does not return a response. The status can be checked by looking at the HTTP status code.
Request
1import (
2 "github.com/ticketmatic/tm-go/ticketmatic"
3 "github.com/ticketmatic/tm-go/ticketmatic/contacts"
4)
5
6err := contacts.Deleteremark(client, id, remarkid)
Response
This operation does not return a response. The status can be checked by looking at the HTTP status code.
Request
1DELETE /api/1/{accountname}/contacts/{id}/remarks/{remarkid} HTTP/1.1
Response
This operation does not return a response. The status can be checked by looking at the HTTP status code.