About Record Values

As in the screenshot, each record has its own record id. Can I write this record id to the table?

Here is what I need:
is there a method that I can write the record id against the key value(Key import item (identification of data records)) of each record in the table?

Hi,

Yes, I would try using WF to update the record by returning the recordId value to the field. Example, I have an Id field (internal name x_id) after creating a record, WF is run which updates this field and pulls the recordId value

Action run scripts:
const fields = {
x_id:doo.model.id,
}
await doo.table.updateRecord(‘tableName’,doo.model.id,fields)

Field value after update:
image
and the part of the link with recordId:
image