AppiumElement "id"

Hi ,

I was wondering what exactly I can do with the id which is being used by appium

info: --> POST /wd/hub/session/6de77c4c-f440-46ae-803f-14863a0bd538/element {"using":"name","value":"Element"}

info: [debug] Waiting up to 1000ms for condition
info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"Element","context":"","multiple":false}]

info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"Element","context":"","multiple":false}}

info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION
info: [debug] [BOOTSTRAP] [debug] Got command action: find
info: [debug] [BOOTSTRAP] [debug] Finding Element using NAME with the contextId:  multiple: false
info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=Element, INSTANCE=0]

info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"1"},"status":0}

info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"1"},"sessionId":"6de77c4c-f440-46ae-803f-14863a0bd538"}
info: <-- POST /wd/hub/session/6de77c4c-f440-46ae-803f-14863a0bd538/element 200 50.947 ms - 87 {"status":0,"value":{"ELEMENT":"1"},"sessionId":"6de77c4c-f440-46ae-803f-14863a0bd538"}

In this example , how can I use the “1” id ?
can I reuse elements by using the id ?

As far as I understand, that id : 1 is internal reference for appium to act, for future actions that we call for respective element in the test code.

@RamS great , that’s what I understood as well…
The Q is how to call to the respective element ?

element.getId() return the same “1”
but I assume that I need to call to the element by using driver , but it doesn’t have any related methods …

Appium guys ? any light on it ?