/
Request HTTP API resources
Request HTTP API resources
In this article we will see how to request HTTP API resources and use it in Cally Square project.
Create script
Below you can see an example of script written in Perl language, but you can use your favourite language.
example.agi
#!/usr/bin/perl -w use strict; use warnings; use JSON qw( decode_json ); my $url = "https://jsonplaceholder.typicode.com/todos/1"; my $curl=`curl -s '$url'`; # { "userId": 1, "id": 1, "title": "delectus aut autem", "completed": false } my $decoded = decode_json($curl); my $title = $decoded->{'title'}; print "SET VARIABLE RESULT_TITLE \"$title\"\n"; my $userId = $decoded->{'userId'}; print "SET VARIABLE RESULT_USERID \"$userId\"\n";
The script can be used as reference for your needs and remember to set properly the result of the cURL command:
print "SET VARIABLE <CHANNEL_VARIABLE> \"<VARIABLE>\"\n";
Use script in Cally Square project
The script must be used as Command in AGI block:
And the variable set in the example.agi script will be available in Cally Square project.
As alternative of AGI Cally Square block, you can use System block assigning the result of the script as channel variable.
, multiple selections available,
Related content
How to retrieve Google Key for Cally Square blocks
How to retrieve Google Key for Cally Square blocks
More like this
Salesforce Integration - Tab Integration
Salesforce Integration - Tab Integration
More like this
Google SSO
Google SSO
More like this
XCALLY for Developers
XCALLY for Developers
More like this
Salesforce Integration - New Tab
Salesforce Integration - New Tab
More like this
V3 Recordings
V3 Recordings
More like this