Get Advanced Character

This endpoint allows you to get a character's information including miscellaneous information.

GetAdvancedCharacter(data, callback)

POST https://imperialcad.app/api/1.1/wf/getadvancedcharacter


Request Body

Name
Type
Description

firstname

string

First Name

lastname

string

Last Name


exports["ImperialCAD"]:GetCharacterAdvanced({
    firstname = "Jane",
    lastname = "Smith"
  }, function(success, data)
    if success then print(json.encode(data)) else print("❌ Failed:", data) end
end)

Last updated

Was this helpful?