I am writing a plugin which takes events created in Events Calendar and writes them to another ticketing website. It is 95% finished, mostly using tribe supplied functions (e.g. tribe_get_events). The only piece I am missing is the (re)creation of event ticket additional fields. I can access these via $ticket_fields = get_metadata(‘post’, $ticket_id, ‘_tribe_tickets_meta’, $single=false); and theoretically could update these via update_post_meta($ticket_id, ‘_tribe_tickets_meta’, $ticket_fields). However I need to add the value returned from the remote site to the meta so that I do not upload it again or can add information to the right ticket on the remote site should it have to change. What would be the safest (update proof?) or recommended way to create and access this value in the ticket field meta?