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