Skip to main content
Version: 5.7.0

Read

Read matchmaking record.

ServiceOperation
matchMakingREAD

Usage

http://localhost:3000
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.MatchMakingService.Read(successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": {
"lastMatch": 0,
"matchAttackExpiry": 0,
"matchEnabled": false,
"sharedAPIToken": null,
"shieldExpiry": 0,
"playerRating": 100,
"matchesPlayed": 0
}
}