탈퇴 계정 정보 조회
계정 탈퇴를 신청한 정보를 조회합니다.
탈퇴 요청 시 등록된 탈퇴 메시지 및 삭제 예상 일자를 제공합니다.
호출 정보
AccountManager.WithDrawalSearch(string withdrawalKey, PlayNANOODelegate callback) {}
호출 상세 정보
파라미터 | 설명 | 타입 |
---|---|---|
withdrawalKey | 인증 서비스에서 전달받은 계정 탈퇴 조회 키 | string |
callback | 통신 결과 | PlayNANOODelegate |
소스 코드
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");
}
});
}
}
통신 결과
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Status" : "String"
}
통신 결과 상세 정보
데이터키 | 설명 | 타입 |
---|---|---|
Memo | 탈퇴 메시지 | string |
WithdrawalDate | 계정 삭제 예상 일자 | string |