Several web sites recommend using ClearCollect to load the returned record. I've had difficulty with this; I believe it's because ClearCollect creates a table, and accessing the ID for the newly-created record is not as straightforward as the following method.
Instead, I have used UpdateContext with success. For example:
UpdateContext ({newRecord: Patch ('Table Name', Defaults('Table Name'), {Json key value pairs values to store in the item item})})
Then, for example, "newRecord.ID" returns the ID for the new item and "newRecord.Title" returns the title.
Of course, you can use Set instead, if you need the new record to be accessible across several screens.