Skip to main content

Query Withdrawn Account Information

Queries information about accounts that have requested withdrawal. Provides the withdrawal message and expected deletion date registered at the time of the withdrawal request.

Call Information

AccountManager.WithDrawalSearch(string withdrawalKey, PlayNANOODelegate callback) {}

Call Details

ParameterDescriptionType
withdrawalKeyWithdrawal lookup key received from the authentication servicestring
callbackCommunication ResultPlayNANOODelegate

Source Code

using PlayNANOO;

public class PlayNANOOExample : MonoBehaviour
{
Plugin plugin;

void Start()
{
plugin = Plugin.GetInstance();

string withdrawalKey = "string";
plugin.AccountManagerV20240401.WithDrawalSearch(withdrawalKey, (status, errorCode, jsonString, values) => {
if (status.Equals(Configure.PN_API_STATE_SUCCESS))
{
Debug.Log(values["Memo"].ToString());
Debug.Log(values["WithdrawalDate"].ToString());
}
else
{
Debug.Log("Fail");
}
});
}
}

Response

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Status" : "String"
}

Response Details

Data KeyDescriptionType
MemoWithdrawal messagestring
WithdrawalDateExpected account deletion datestring