Skip to main content
Version: 6.0.0

SendInquiry

public BackndReturnObject SendInquiry(QuestionType questionType, string title, string content);

Parameters

ValueTypeDescription
questionTypeQuestionTypeInquiry type
titlestringInquiry title
contentstringInquiry content

QuestionType

TypeDescription
QuestionType.AccountAccount
QuestionType.PaymentPayment
QuestionType.RestoreRecovery
QuestionType.GameQuestionGame Inquiry
QuestionType.ReportReport
QuestionType.SetupOrExecuteInstall/Execute
QuestionType.BugBugs
QuestionType.EventEvents
QuestionType.SuggestionsSuggestions
QuestionType.EtcOther

Description

Inquiries are sent. The inquiry type can be assigned with enum QuestionType.
The pre-upload function is currently not available.

Example

Synchronous

Backnd.Inquiry.SendInquiry(QuestionType.Account, "Title", "Content");

Asynchronous

Backnd.Inquiry.SendInquiry(QuestionType.Account, "Title","Content", callback => {

});

Return casess

Success casess

statusCode : 204