Class RawNotesClient
- java.lang.Object
-
- com.intercom.api.resources.unstable.notes.RawNotesClient
-
public class RawNotesClient extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ClientOptionsclientOptions
-
Constructor Summary
Constructors Constructor Description RawNotesClient(ClientOptions clientOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntercomHttpResponse<Note>createNote(CreateNoteRequest request)You can add a note to a single contact.IntercomHttpResponse<Note>createNote(CreateNoteRequest request, RequestOptions requestOptions)You can add a note to a single contact.IntercomHttpResponse<NoteList>listCompanyNotes(ListCompanyNotesRequest request)You can fetch a list of notes that are associated to a company.IntercomHttpResponse<NoteList>listCompanyNotes(ListCompanyNotesRequest request, RequestOptions requestOptions)You can fetch a list of notes that are associated to a company.IntercomHttpResponse<NoteList>listNotes(ListNotesRequest request)You can fetch a list of notes that are associated to a contact.IntercomHttpResponse<NoteList>listNotes(ListNotesRequest request, RequestOptions requestOptions)You can fetch a list of notes that are associated to a contact.IntercomHttpResponse<Note>retrieveNote(RetrieveNoteRequest request)You can fetch the details of a single note.IntercomHttpResponse<Note>retrieveNote(RetrieveNoteRequest request, RequestOptions requestOptions)You can fetch the details of a single note.
-
-
-
Field Detail
-
clientOptions
protected final ClientOptions clientOptions
-
-
Constructor Detail
-
RawNotesClient
public RawNotesClient(ClientOptions clientOptions)
-
-
Method Detail
-
listCompanyNotes
public IntercomHttpResponse<NoteList> listCompanyNotes(ListCompanyNotesRequest request)
You can fetch a list of notes that are associated to a company.
-
listCompanyNotes
public IntercomHttpResponse<NoteList> listCompanyNotes(ListCompanyNotesRequest request, RequestOptions requestOptions)
You can fetch a list of notes that are associated to a company.
-
listNotes
public IntercomHttpResponse<NoteList> listNotes(ListNotesRequest request)
You can fetch a list of notes that are associated to a contact.
-
listNotes
public IntercomHttpResponse<NoteList> listNotes(ListNotesRequest request, RequestOptions requestOptions)
You can fetch a list of notes that are associated to a contact.
-
createNote
public IntercomHttpResponse<Note> createNote(CreateNoteRequest request)
You can add a note to a single contact.
-
createNote
public IntercomHttpResponse<Note> createNote(CreateNoteRequest request, RequestOptions requestOptions)
You can add a note to a single contact.
-
retrieveNote
public IntercomHttpResponse<Note> retrieveNote(RetrieveNoteRequest request)
You can fetch the details of a single note.
-
retrieveNote
public IntercomHttpResponse<Note> retrieveNote(RetrieveNoteRequest request, RequestOptions requestOptions)
You can fetch the details of a single note.
-
-