Class AsyncRawTagsClient
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreate(TagsCreateRequestBody request) You can use this endpoint to perform the following operations:create(TagsCreateRequestBody request, RequestOptions requestOptions) You can use this endpoint to perform the following operations:delete(DeleteTagRequest request) You can delete the details of tags that are on the workspace by passing in the id.delete(DeleteTagRequest request, RequestOptions requestOptions) You can delete the details of tags that are on the workspace by passing in the id.find(FindTagRequest request) You can fetch the details of tags that are on the workspace by their id.find(FindTagRequest request, RequestOptions requestOptions) You can fetch the details of tags that are on the workspace by their id.list()You can fetch a list of all tags for a given workspace.list(RequestOptions requestOptions) You can fetch a list of all tags for a given workspace.tagContact(TagContactRequest request) You can tag a specific contact.tagContact(TagContactRequest request, RequestOptions requestOptions) You can tag a specific contact.tagConversation(TagConversationRequest request) You can tag a specific conversation.tagConversation(TagConversationRequest request, RequestOptions requestOptions) You can tag a specific conversation.tagTicket(TagTicketRequest request) You can tag a specific ticket.tagTicket(TagTicketRequest request, RequestOptions requestOptions) You can tag a specific ticket.untagContact(UntagContactRequest request) You can remove tag from a specific contact.untagContact(UntagContactRequest request, RequestOptions requestOptions) You can remove tag from a specific contact.You can remove tag from a specific conversation.untagConversation(UntagConversationRequest request, RequestOptions requestOptions) You can remove tag from a specific conversation.untagTicket(UntagTicketRequest request) You can remove tag from a specific ticket.untagTicket(UntagTicketRequest request, RequestOptions requestOptions) You can remove tag from a specific ticket.
-
Field Details
-
clientOptions
-
-
Constructor Details
-
AsyncRawTagsClient
-
-
Method Details
-
tagContact
You can tag a specific contact. This will return a tag object for the tag that was added to the contact. -
tagContact
public CompletableFuture<IntercomHttpResponse<Tag>> tagContact(TagContactRequest request, RequestOptions requestOptions) You can tag a specific contact. This will return a tag object for the tag that was added to the contact. -
untagContact
You can remove tag from a specific contact. This will return a tag object for the tag that was removed from the contact. -
untagContact
public CompletableFuture<IntercomHttpResponse<Tag>> untagContact(UntagContactRequest request, RequestOptions requestOptions) You can remove tag from a specific contact. This will return a tag object for the tag that was removed from the contact. -
tagConversation
You can tag a specific conversation. This will return a tag object for the tag that was added to the conversation. -
tagConversation
public CompletableFuture<IntercomHttpResponse<Tag>> tagConversation(TagConversationRequest request, RequestOptions requestOptions) You can tag a specific conversation. This will return a tag object for the tag that was added to the conversation. -
untagConversation
public CompletableFuture<IntercomHttpResponse<Tag>> untagConversation(UntagConversationRequest request) You can remove tag from a specific conversation. This will return a tag object for the tag that was removed from the conversation. -
untagConversation
public CompletableFuture<IntercomHttpResponse<Tag>> untagConversation(UntagConversationRequest request, RequestOptions requestOptions) You can remove tag from a specific conversation. This will return a tag object for the tag that was removed from the conversation. -
list
You can fetch a list of all tags for a given workspace. -
list
You can fetch a list of all tags for a given workspace. -
create
You can use this endpoint to perform the following operations:1. Create a new tag: You can create a new tag by passing in the tag name as specified in "Create or Update Tag Request Payload" described below.
2. Update an existing tag: You can update an existing tag by passing the id of the tag as specified in "Create or Update Tag Request Payload" described below.
3. Tag Companies: You can tag single company or a list of companies. You can tag a company by passing in the tag name and the company details as specified in "Tag Company Request Payload" described below. Also, if the tag doesn't exist then a new one will be created automatically.
4. Untag Companies: You can untag a single company or a list of companies. You can untag a company by passing in the tag id and the company details as specified in "Untag Company Request Payload" described below.
5. Tag Multiple Users: You can tag a list of users. You can tag the users by passing in the tag name and the user details as specified in "Tag Users Request Payload" described below.
Each operation will return a tag object.
-
create
public CompletableFuture<IntercomHttpResponse<Tag>> create(TagsCreateRequestBody request, RequestOptions requestOptions) You can use this endpoint to perform the following operations:1. Create a new tag: You can create a new tag by passing in the tag name as specified in "Create or Update Tag Request Payload" described below.
2. Update an existing tag: You can update an existing tag by passing the id of the tag as specified in "Create or Update Tag Request Payload" described below.
3. Tag Companies: You can tag single company or a list of companies. You can tag a company by passing in the tag name and the company details as specified in "Tag Company Request Payload" described below. Also, if the tag doesn't exist then a new one will be created automatically.
4. Untag Companies: You can untag a single company or a list of companies. You can untag a company by passing in the tag id and the company details as specified in "Untag Company Request Payload" described below.
5. Tag Multiple Users: You can tag a list of users. You can tag the users by passing in the tag name and the user details as specified in "Tag Users Request Payload" described below.
Each operation will return a tag object.
-
find
You can fetch the details of tags that are on the workspace by their id. This will return a tag object. -
find
public CompletableFuture<IntercomHttpResponse<Tag>> find(FindTagRequest request, RequestOptions requestOptions) You can fetch the details of tags that are on the workspace by their id. This will return a tag object. -
delete
You can delete the details of tags that are on the workspace by passing in the id. -
delete
public CompletableFuture<IntercomHttpResponse<Void>> delete(DeleteTagRequest request, RequestOptions requestOptions) You can delete the details of tags that are on the workspace by passing in the id. -
tagTicket
You can tag a specific ticket. This will return a tag object for the tag that was added to the ticket. -
tagTicket
public CompletableFuture<IntercomHttpResponse<Tag>> tagTicket(TagTicketRequest request, RequestOptions requestOptions) You can tag a specific ticket. This will return a tag object for the tag that was added to the ticket. -
untagTicket
You can remove tag from a specific ticket. This will return a tag object for the tag that was removed from the ticket. -
untagTicket
public CompletableFuture<IntercomHttpResponse<Tag>> untagTicket(UntagTicketRequest request, RequestOptions requestOptions) You can remove tag from a specific ticket. This will return a tag object for the tag that was removed from the ticket.
-