Skip to main content
Version: 6.0.0

GetDefaultQuestionForm

public public BackndDefaultInquiryFormReturnObject GetDefaultQuestionForm(); GetDefaultQuestionForm();

BackndDefaultInquiryFormReturnObject

GetDefaultFormByString

If an error occurred, string.IsEmpty is returned.

BackndDefaultInquiryFormReturnObject bro = Backnd.Inquiry.GetDefaultQuestionForm();

string defaultForm = bro.GetDefaultFormByString();

Description

The inquiry template set in BACKND Console's 1:1 Inquiry > Inquiry Settings is loaded.
If the template is not set, ""(string.Empty) is returned.

The console reads the user's language information and loads the registered default template that matches the country.

Example

Synchronous

BackndDefaultInquiryFormReturnObject bro = Backnd.Inquiry.GetDefaultQuestionForm();

string defaultForm = bro.GetDefaultFormByString();

Asynchronous

Backnd.Inquiry.GetDefaultQuestionForm(callback => {
string defaultForm = bro.GetDefaultFormByString();
});

ReturnCase

Success cases

When loading succeeds
statusCode : 200

returnValue : refer to GetReturnValuetoJSON

GetReturnValuetoJSON

{
"type":["Account","Payment","Restore","Game Inquiry","Report","Install/Execute","Bugs","Events","Suggestions","Other"],
"form":"Please enter the time when the issue occurred!"
}