Sendbird Desk SDK for Android lets you easily initialize, configure, and build the customer-support related functionalities to a client app. When a customer asks for help through live, in-app support built with the Desk SDK, agents receive those messages as tickets and can start a conversation on the Sendbird Dashboard. This page walks you through the quick steps to create your first ticket by installing and initializing the Desk SDK.
Note: As Sendbird Desk works based on Sendbird Chat, the interaction between users is built and provided by Sendbird Chat.
Before installing Sendbird Desk SDK, you will need an account on Sendbird Dashboard. Sign up to create a Sendbird application first.
Note: A Sendbird application gets paired up with one client app. Agents can support customers across all platforms, but customers from different Sendbird applications are excluded because all data is limited to the scope of a single application.
You can install the Desk SDK for Android using Gradle. First, you need to add the Sendbird repository to your project. In this step, use different approaches as instructed below depending on the Gradle version. Then, add dependency to your module build.gradle file, regardless of the version.
Add a repository.
If you are using Gradle 6.7 or lower, add the following code to your rootbuild.gradle file. Make sure the above code block isn't added to your module build.gradle file.
Initialization of Sendbird Desk SDK requires your Sendbird application's Application ID, which can be found on Sendbird Dashboard. As Sendbird Desk SDK uses the features provided by Sendbird Chat SDK, you need to initialize a SendbirdChat instance as well.
Initialize a SendBirdDesk instance when launching a client app.
Copy Application ID of your Sendbird application from the dashboard, which should be passed to APP_ID of InitParams. The same Application ID must be used for both Chat and Desk SDKs.
Call the SendbirdChat.init(InitParams) method using the copied APP_ID within Application.onCreate().
Call the SendBirdDesk.init() method within Application.onCreate().
// Initialize a SendBirdDesk instance to use APIs in your app.
public class BaseApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
final InitParams initParams = new InitParams("APP_ID", this, false);
SendbirdChat.init(initParams, new InitResultHandler() {
@Override
public void onMigrationStarted() {
}
@Override
public void onInitFailed(SendbirdException e) {
// If initialization fails, this method is called.
}
@Override
public void onInitSucceed() {
// If initialization is successful, this method is called
// and you can proceed to the next step.
// You can use all Sendbird APIs, including connect()
// after init is completed in your app.
SendBirdDesk.init();
}
});
}
}
Note: If you call SendBirdDesk.init() again after calling SendbirdChat.init(InitParams) with a different APP_ID, all existing Desk-related data in the client app will be deleted.
As explained earlier, Sendbird Desk SDK handles converstaion between customers and agents within a ticket using the features provided by Sendbird Chat. Because of its dependency on Sendbird Chat, every ticket in Sendbird Desk is mapped to a group channel in Sendbird Chat and every message sent by customers comes and goes through Sendbird Chat. To receive their messages, you need to authenticate the user using the SendbirdChat.connect() and the SendBirdDesk.authenticate() methods with their USER_ID used in Sendbird Chat.
// Use a user ID that is unique to your Sendbird application.
SendbirdChat.connect("USERID", "ACCESS_TOKEN", new ConnectHandler() {
@Override
public void onConnected(User user, SendbirdException e) {
if (e != null) { // error.
return;
}
// Use the same userId and accessToken used in SendbirdChat.connect().
SendBirdDesk.authenticate("USERID", "ACCESS_TOKEN", new SendBirdDesk.AuthenticateHandler() {
@Override
public void onResult(SendbirdException e) {
if (e != null) { //error.
return;
}
// SendBirdDesk is now initialized,
// and the customer is authenticated.
}
});
}
});
Implement the Ticket.create() method to create a ticket either before or after the customer’s initial message. Once a ticket is successfully created on the Desk server, use ticket.getChannel() to retrieve the information of the ticket and its channel as a callback from the server.
Until a customer sends the first message, agents can’t see the ticket on the dashboard. When the customer initiates conversation by sending a message, the ticket is assigned to an available agent by the Desk server while messages are sent and received through the Chat SDK.
Ticket.create(TICKET_TITLE, USER_NAME, new Ticket.CreateHandler() {
@Override
public void onResult(Ticket ticket, SendbirdException e) {
if (e != null) {
// Handle error.
}
// The ticket is created.
// The customer and agent can chat with each other
// by sending a message through the ticket.channel.sendUserMessage()
// or sendFileMessage().
}
});
Note: Because the SendbirdChat instance in a client app is connected to the Sendbird server, Desk-related events are delivered to the Chat SDK's event handlers. The event handlers receive callbacks from the server through event callback methods such as onMessageReceived(), onUserJoined(), and more.