Quantcast
Channel: Discussion Forum > Connect Data Services
Viewing all articles
Browse latest Browse all 2504

Saving the contact using connect PHP fails (4 Comments)

$
0
0

Topic by Sky Dagan

Content

Hey, 

I want to insert the current date stamp into the contact object using the CPM we have running everytime the incidents rules are running.

This is the function that should insert the value:

publicstaticfunctionrunTime()
    {
        
                    $contact->CustomFields->c->brm_account_manager=date("Y-m-d H:i:s");
                     //the row below causes the error
                    $contact->save(RNCPHP\RNObject::SuppressExternalEvents);
 
                    
            
        //$contact->CustomFields->c->brm_account_manager=date("Y-m-d H:i:s");
        //$contact->save(RNCPHP\RNObject::SuppressExternalEvents);
        
        //$contact->save();
    }

This is the error I get when testing the code 

 

How can I save the contact after appending a value without this error?

Thanks,

Sky

Code Block


Viewing all articles
Browse latest Browse all 2504

Trending Articles