Giter Club home page Giter Club logo

Comments (3)

wizardist avatar wizardist commented on May 23, 2024

Hi @demonarola

Please share your code. Also, do you provide caching to Client and/or MetadataCollection?

from php-crm-toolkit.

demonarola avatar demonarola commented on May 23, 2024

Thanks for your reply.
Here is my code to create a lead, where I have done to created lead successfully and also our data added successfully to related fields like name, mobile_no., email_address etc. But our custom fields take its default value rather than our data which passed to create() function.

use AlexaCRM\CRMToolkit\Client as OrganizationService;
use AlexaCRM\CRMToolkit\Entity\MetadataCollection;
use AlexaCRM\CRMToolkit\KeyAttributes;
use AlexaCRM\CRMToolkit\Settings;
require_once 'vendor/autoload.php';
require_once 'init.php';

$options = [
'serverUrl' => 'my_crm_url',
'username' => 'user_name',
'password' => 'password',
'authMode' => 'OnlineFederation'];

$serviceSettings = new Settings($options);
$service = new OrganizationService($serviceSettings);
$metadata = MetadataCollection::instance($service);

$lead = $service->entity('lead');
 //array of data which is passed by post method
 $data=$_POST['data'];

//core fields
$lead->subject=$data['name'];
$lead->emailaddress1=$data['email'];
$lead->firstname=$data['name'];
$lead->mobilephone = $data['mobilenumber'];

//custom fields created by us on Dynamic CRMLeads
if(isset($data['earnaround'])){
//1 for 'yes'
$lead->new_earnaround_single_couple=1;
}else{
//2 for 'no'
$lead->new_earnaround_single_couple=2;
}
$lead->new_fromsource=1;

// use for create new lead (entity).
$leadID = $lead->create();

if ($leadID) {
echo "Your Request Submited Successfully ";
} else {
echo "Sorry!!! Something went wrong. Please Try Again.";
}

from php-crm-toolkit.

wizardist avatar wizardist commented on May 23, 2024

Make sure optionsetvalues for those attributes are in fact 1 and 2. Please look up your metadata via XrmToolbox or similar.

from php-crm-toolkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.