Get Character
This endpoint allows you to get a character's information.
GetCharacter(data, callback)
Parameters
Name
Type
Description
exports["ImperialCAD"]:GetCharacter("JD321", "myCommIdHere", function(success, data)
if success then print(json.encode(data)) else print("Failed:", data) end
end){
"status": "success",
"response": {
"charid": "JD321",
"name": "Jane A Smith",
"ssn": "123456789",
"age": "35",
"address": "000 No Where Rd"
}
}Last updated