For questions about Agile CRM.
Questions tagged [agile-crm]
9 questions
2
votes
5 answers
symfony2: how to integrate a php library which is not a bundle
I am trying to integrate Agile CRM in my Symfony2 application.
There is a PHP library provided by Agile :
https://github.com/agilecrm/php-api
However it's not a bundle.
How can I integrate it correctly in my application? Should I put a require once…

Sébastien
- 5,263
- 11
- 55
- 116
1
vote
1 answer
How to search contact using phone number in AgileCRM?
I am trying to use REST API of AgileCRM, I can search contact using email address but when I'm trying to search contact using phone number I'm not successful.
I have tried and successful :
$contact = curl_wrap("contacts/search/email/max@gmail.com",…

user1944646
- 29
- 4
0
votes
2 answers
WIX Fetch API returns empty JSON (VELO)
Overview
I am using AgileCRM. I would like to create new contacts in this CRM when users complete a form. I have been successful in doing just that within PostMan. I am trying to do a simple "GET" request from WIX so I can understand VELO code…

Bromox
- 567
- 2
- 9
- 29
0
votes
1 answer
Get a specific value from a multidimensional array provided by AgileCRM
I'm trying to get the first deal ID from AgileCRM.
When using:
$test = json_decode($deal, true);
print_r($test);
I get the following result:
Array (
[0] => Array (
[colorName] => WHITE
[id] => 5686812383117312
[apply_discount] =>
…

cgaybba
- 95
- 1
- 8
0
votes
1 answer
Checking if variable exists in Rails 5 GET request
Not sure exactly how to ask this as I am learning as I go. I am creating/updating user information from my app to a third party CRM system.
I have two methods that run successfully with an after_save callback. During testing, I would comment one…

Charles Smith
- 3,201
- 4
- 36
- 80
0
votes
2 answers
Phoenix/Elixir - cURL works, but HTTPoison fails
In my Phoenix app, I am trying to use the HTTPoison HTTP client (https://hexdocs.pm/httpoison/api-reference.html) to make a post request to the AgileCRM API. I was able to use cURL to make a successful request, but my attempt to replicate it in…

skwidbreth
- 7,888
- 11
- 58
- 105
0
votes
2 answers
AgileCRM return "HTTP/1.1 500 Internal Server Error" on every call
From the agile CRM doc, trying a few simple curl calls like this one (anonymised):
curl https://****.agilecrm.com/dev/api/contacts/*********** -H "Accept :application/xml" -v -u ********@***********:********************
And always same problem :
<…

Pr Shadoko
- 1,649
- 2
- 15
- 16
0
votes
1 answer
AgileCRM : Add Current day in compaing email
I am developing marketing campaign , I want to insert the day name in campaign. I Try to add date using custom field but it is not possible . Please suggest any solution

Awais Usmani
- 188
- 1
- 10
0
votes
2 answers
Add contacts using PHP Api with AgileCRM
I have implemented on Add contact to AgileCRM with PHP API then
In agile_curl_wrap function, I have provided three requirements with Domain, User and Api_key after clicking submit, I got 401 UNAUTHORIZE response back.
I'm sure that I have set all…

Sophat Chhay
- 9
- 3