Need to update a Field with the previous value it had, what is the best way to do this? | Community
Skip to main content
Danielle_Wong
Community Manager
April 19, 2019
Solved

Need to update a Field with the previous value it had, what is the best way to do this?

  • April 19, 2019
  • 1 reply
  • 2708 views

So we had a system accidentally update a bunch of first name and last name records to NULL even though we had actual First and Last Names. I want to basically undo the update for both fields so that the NULLs are replaced with the previous value.

Anyone have examples/steps of how to do this?

Thanks!!

Danielle

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SanfordWhiteman

The only way is via API.

Use the getLeadChanges endpoint to get the old values.

Then reimport using your choice of method (standard UI CSV import, API-based CSV import, or one of the paginated lead update API endpoints like Update or Push).

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
New Participant
April 19, 2019

The only way is via API.

Use the getLeadChanges endpoint to get the old values.

Then reimport using your choice of method (standard UI CSV import, API-based CSV import, or one of the paginated lead update API endpoints like Update or Push).

Danielle_Wong
Community Manager
April 19, 2019

Thanks for the quick help, Sanford!