Case & Topic
Get Available Topics
You can get the list of available topics by calling getTopicList
.
YourViewController
Get Active User's Case List
To use this method, you need to first finish authentication process.
Once authenticated, you can obtain the active user's case list by calling getUserCaseList
.
YourViewController
Create a New Case
To use this method, you need to first finish authentication process.
Once authenticated, you can create a new case for the user by calling createNewCase
, providing the topic ID and first message.
YourViewController
Parameters
TOPIC_ID
: (String) ID of the selected topic, can be obtained from getTopicList
FIRST_MESSAGE
: (String) message to be sent by the user to start a case
Last updated