Package com.intercom.api.resources.notes
Class NotesClient
- java.lang.Object
-
- com.intercom.api.resources.notes.NotesClient
-
public class NotesClient extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ClientOptionsclientOptions
-
Constructor Summary
Constructors Constructor Description NotesClient(ClientOptions clientOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Notecreate(CreateContactNoteRequest request)You can add a note to a single contact.Notecreate(CreateContactNoteRequest request, RequestOptions requestOptions)You can add a note to a single contact.Notefind(FindNoteRequest request)You can fetch the details of a single note.Notefind(FindNoteRequest request, RequestOptions requestOptions)You can fetch the details of a single note.SyncPagingIterable<Note>list(ListContactNotesRequest request)You can fetch a list of notes that are associated to a contact.SyncPagingIterable<Note>list(ListContactNotesRequest request, RequestOptions requestOptions)You can fetch a list of notes that are associated to a contact.RawNotesClientwithRawResponse()Get responses with HTTP metadata like headers
-
-
-
Field Detail
-
clientOptions
protected final ClientOptions clientOptions
-
-
Constructor Detail
-
NotesClient
public NotesClient(ClientOptions clientOptions)
-
-
Method Detail
-
withRawResponse
public RawNotesClient withRawResponse()
Get responses with HTTP metadata like headers
-
list
public SyncPagingIterable<Note> list(ListContactNotesRequest request)
You can fetch a list of notes that are associated to a contact.
-
list
public SyncPagingIterable<Note> list(ListContactNotesRequest request, RequestOptions requestOptions)
You can fetch a list of notes that are associated to a contact.
-
create
public Note create(CreateContactNoteRequest request)
You can add a note to a single contact.
-
create
public Note create(CreateContactNoteRequest request, RequestOptions requestOptions)
You can add a note to a single contact.
-
find
public Note find(FindNoteRequest request)
You can fetch the details of a single note.
-
find
public Note find(FindNoteRequest request, RequestOptions requestOptions)
You can fetch the details of a single note.
-
-