Search
 
SCRIPT & CODE EXAMPLE
 

PHP

create request php-salesforce-rest-api

    $data = [
       'Name' => 'Some name',
    ];

    /* returns the id of the created object */
    $salesforceFunctions->create('Account', $data);
Comment

update request php-salesforce-rest-api

    $new_data = [
       'Name' => 'another name',
    ];

    /* returns statuscode */
    $salesforceFunctions->update('Account', $id, $new_data);
Comment

upsert request php-salesforce-rest-api

    $new_data = [
       'Name' => 'another name',
    ];

    /* returns statuscode */
    $salesforceFunctions->upsert('Account', 'API Name/ Field Name', 'value', $new_data);
Comment

describe request php-salesforce-rest-api

    $salesforceFunctions->describe('Account');
Comment

custom end-point request php-salesforce-rest-api

    $salesforceFunctions->customEndpoint('apex/myCustomEndpoint', $data, 200);
Comment

PREVIOUS NEXT
Code Example
Php :: calculate average in eager loading laravel 
Php :: wp_signon wordpress login subdomain 
Php :: PHP stripos — Find the position of the first occurrence of a case-insensitive substring in a string 
Php :: pluck only category name and id from model in laravel 
Php :: amazon ami 2 php ini 
Php :: how we show full name of month in posts 
Php :: spatie sluggable not working 
Php :: show all custom taxonomy term & title with filter hook 
Php :: wordpress not recognizing function during plugin activation 
Php :: union for rwos 
Php :: Get authors who has posts in category - WordPress 
Php :: woocommerce remove notification after some time 
Php :: afiseaza id-ul sesiunii php 
Php :: laravel csrf token or protection or laravel form 
Php :: findmany laravel 
Php :: create product model in laravel 
Php :: send nested array to laravel resource 
Php :: openclassroom php 
Php :: in php einen div 
Php :: php know if city exist gmap api 
Php :: how to pass javascript variable to php 
Php :: disableTimeRanges 
Php :: Max() Value And Min() Value 
Php :: phpunit exception message contains string 
Php :: email with attcahment in joomla 
Php :: wpmu assign user to blog 
Php :: yii1 anchor tag 
Php :: php iife 
Php :: messagebird php curl send sms example 
Php :: lowercase in array php 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =