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