first of all I created the lead on the intercom just like that:
lead = @intercom.contacts.create(args)
it successfully created the lead on the intercom and after that I want to update the lead on the intercom just like
lead = find_lead(my_argsy:lead_id])
company_name = registration_info.company_name || ""
company_website = registration_info.company_url || ""
lead.name = registration_info.full_name.to_s
lead.custom_attributes = {
"Company Name": company_name,
"Company Website": company_website
}
@intercom.contacts.save(lead)
and I got the lead id but when I am going to execute this line
@intercom.contacts.save(lead)
it gives me this error:
@intercom.contacts.save(lead)
| *** Intercom::ResourceNotFound Exception: Resource Not Found
although I get the lead through postman using the lead id and I got the lead but this shows Resource not found.please help me to fixed it.Regards