JSONARRAY Function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with "{{#seo: |title=JSONARRAY Function |titlemode=append |keywords=planfix, Function, JSONARRAY, Jsonarray, jsonarray |description=SONARRAY Function }} The JSONARRAY() function returns a string formatted as a valid JSON array from a variable. == Format == '''JSONARRAY('''Variable''')''' == Example == This function is typically used when sending JSON data in POST requests. For example, if you send a list of phone numbers in a POST request, you can use the variable {{Task.Coun...")
 
No edit summary
 
Line 11: Line 11:
This function is typically used when sending JSON data in POST requests.
This function is typically used when sending JSON data in POST requests.


For example, if you send a list of phone numbers in a POST request, you can use the variable {{Task.Counterparty.Phones as list}}. Planfix will then automatically convert the data into the correct format. If the task has no counterparty or the counterparty is not specified, an empty JSON array is inserted instead of the variable.
For example, if you send a list of phone numbers in a POST request, you can use the variable <nowiki>{{Task.Counterparty.Phones as list}}</nowiki>. Planfix will then automatically convert the data into the correct format. If the task has no counterparty or the counterparty is not specified, an empty JSON array is inserted instead of the variable.


<pre>
<pre>

Latest revision as of 14:15, 21 March 2025

The JSONARRAY() function returns a string formatted as a valid JSON array from a variable.

Format

JSONARRAY(Variable)

Example

This function is typically used when sending JSON data in POST requests.

For example, if you send a list of phone numbers in a POST request, you can use the variable {{Task.Counterparty.Phones as list}}. Planfix will then automatically convert the data into the correct format. If the task has no counterparty or the counterparty is not specified, an empty JSON array is inserted instead of the variable.

{
    phones: %%% JSONARRAY({{Task.Counterparty.Phones as list}}) %%%
}


Result:

{
    phones: []
}


Go To