Skip to main content
Question

set_job_context_property best practices?

  • November 19, 2025
  • 3 replies
  • 29 views

nelson_prenga
Forum|alt.badge.img+3

I am building a sync job and I need to use “set_job_context_property” method where I will be storing data for each case that I need to iterate. What are best practices when using this? is there a way to delete a previously set key?

3 replies

Ben_T
Staff
Forum|alt.badge.img+4
  • Staff
  • November 19, 2025

Hi Nelson,

Some things to keep in mind for set_job_context_property are to not store permanent info and focus on assigning data relevant to the current job run. I would avoid storing permanent data or secrets here. 

For deletion I would try setting the value to None. 


ylandovskyy
Staff
Forum|alt.badge.img+16
  • Staff
  • November 20, 2025

Hey ​@nelson_prenga ,

Did you check, how it’s used inside the “Sample Integration”?


nelson_prenga
Forum|alt.badge.img+3
  • Author
  • Bronze 1
  • November 24, 2025

I ended up using fetch and save timestamp instead. Thank you!