Package com.intercom.api.resources.notes
Class AsyncNotesClient
- java.lang.Object
-
- com.intercom.api.resources.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>create(CreateContactNoteRequest request)You can add a note to a single contact.java.util.concurrent.CompletableFuture<Note>create(CreateContactNoteRequest request, RequestOptions requestOptions)You can add a note to a single contact.java.util.concurrent.CompletableFuture<Note>find(FindNoteRequest request)You can fetch the details of a single note.java.util.concurrent.CompletableFuture<Note>find(FindNoteRequest request, RequestOptions requestOptions)You can fetch the details of a single note.java.util.concurrent.CompletableFuture<SyncPagingIterable<Note>>list(ListContactNotesRequest request)You can fetch a list of notes that are associated to a contact.java.util.concurrent.CompletableFuture<SyncPagingIterable<Note>>list(ListContactNotesRequest request, RequestOptions requestOptions)You can fetch a list of notes that are associated to a contact.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
-
list
public java.util.concurrent.CompletableFuture<SyncPagingIterable<Note>> list(ListContactNotesRequest request)
You can fetch a list of notes that are associated to a contact.
-
list
public java.util.concurrent.CompletableFuture<SyncPagingIterable<Note>> list(ListContactNotesRequest request, RequestOptions requestOptions)
You can fetch a list of notes that are associated to a contact.
-
create
public java.util.concurrent.CompletableFuture<Note> create(CreateContactNoteRequest request)
You can add a note to a single contact.
-
create
public java.util.concurrent.CompletableFuture<Note> create(CreateContactNoteRequest request, RequestOptions requestOptions)
You can add a note to a single contact.
-
find
public java.util.concurrent.CompletableFuture<Note> find(FindNoteRequest request)
You can fetch the details of a single note.
-
find
public java.util.concurrent.CompletableFuture<Note> find(FindNoteRequest request, RequestOptions requestOptions)
You can fetch the details of a single note.
-
-