<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Efficy Overflow Q&amp;A - Recent questions tagged json</title>
<link>https://overflow.efficy.io/?qa=tag/json</link>
<description>Powered by Question2Answer</description>
<item>
<title>Disable the chat access from Effcy's desktop</title>
<link>https://overflow.efficy.io/?qa=6768/disable-the-chat-access-from-effcys-desktop</link>
<description>&lt;p&gt;Hello,&lt;br&gt;
We need to disable the chat access from Effcy's desktop.&lt;br&gt;
Our clients don't need to contact Efficy support team.&lt;br&gt;
It's urgent.&lt;/p&gt;

&lt;p&gt;Thank you&lt;br&gt;
Dimitri&lt;/p&gt;
</description>
<category>Other</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6768/disable-the-chat-access-from-effcys-desktop</guid>
<pubDate>Mon, 28 Nov 2022 06:33:29 +0000</pubDate>
</item>
<item>
<title>(API) How to send fax and sms from Efficy as it exists for emails notifications ?</title>
<link>https://overflow.efficy.io/?qa=6755/api-how-send-fax-and-from-efficy-exists-emails-notifications</link>
<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;Is there any API for sending sms and/or faxes from Efficy ?&lt;/p&gt;

&lt;p&gt;Thank you&lt;br&gt;
Dimitri&lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6755/api-how-send-fax-and-from-efficy-exists-emails-notifications</guid>
<pubDate>Thu, 10 Nov 2022 10:26:34 +0000</pubDate>
</item>
<item>
<title>Is there a way to send mutlivalue fields values through the API ?</title>
<link>https://overflow.efficy.io/?qa=6705/is-there-way-to-send-mutlivalue-fields-values-through-the-api</link>
<description>&lt;p&gt;We try to use the API to call an Efficy Query that contains multivalue fields.&lt;/p&gt;

&lt;p&gt;When we execute the query in Efficy, the result contains the value of the multivalue field, but when we execute the query through the API, the multivalue field is getting the key separated by semic-columns.&lt;/p&gt;

&lt;p&gt;In order to test it in a standard Efficy 12.0 Efficy Entreprise, it is quite easy : &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1- create an API key in Efficy Designer (link to admin user)&lt;br&gt;
2- create an Efficy Query for instance :&lt;/strong&gt; &lt;br&gt;
[Select]&lt;br&gt;
OPPORTUNITIES.K_OPPORTUNITY&lt;br&gt;
OPPORTUNITIES.NAME&lt;br&gt;
OPPORTUNITIES.COMPETITORS&lt;/p&gt;

&lt;p&gt;[From]&lt;br&gt;
OPPORTUNITIES&lt;/p&gt;

&lt;p&gt;[Where]&lt;br&gt;
OPPORTUNITIES.COMPETITORS notisnull &quot;&quot;&lt;/p&gt;

&lt;p&gt;[Orderby]&lt;/p&gt;

&lt;p&gt;[Options]&lt;br&gt;
ChangeParameters=0&lt;br&gt;
Distinct=0&lt;/p&gt;

&lt;p&gt;[InlineEdit]&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3- Call this query from Postman :&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;URL : &lt;a rel=&quot;nofollow&quot; href=&quot;http://{{YOUR_LOCAL_EFFICY}}/crm/json&quot;&gt;http://{{YOUR_LOCAL_EFFICY}}/crm/json&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;HEADERS&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
X-Efficy-ApiKey:{{EfficyAPIKey}}&lt;br&gt;
Cache-Control:no-cache&lt;br&gt;
Content-Type:application/json&lt;br&gt;
Accept:application/json&lt;br&gt;
Cookie:{{EfficyCookie}}&lt;br&gt;
X-Efficy-Logoff:False&lt;br&gt;
X-Efficy-Lang:FR&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;BODY&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
[&lt;br&gt;
  {&lt;br&gt;
    &quot;@name&quot;: &quot;api&quot;,&lt;br&gt;
    &quot;@func&quot;: [&lt;br&gt;
      {&lt;br&gt;
        &quot;@name&quot;: &quot;query&quot;,&lt;br&gt;
        &quot;key&quot;: &quot;{{Efficy Query KEY}}&quot;&lt;br&gt;
      }&lt;br&gt;
    ]&lt;br&gt;
  }&lt;br&gt;
]&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Result of the API :&lt;/strong&gt; &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
    &quot;K_OPPORTUNITY&quot;: 30,
    &quot;NAME&quot;: &quot;test&quot;,
    &quot;COMPETITORS&quot;: &quot;;1;2;&quot;
},
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;Result in Efficy :&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=15585836867604139491&quot; alt=&quot;Efficy Query Result&quot;&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Attended Result from the API :&lt;/strong&gt; &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
    &quot;K_OPPORTUNITY&quot;: 30,
    &quot;NAME&quot;: &quot;test&quot;,
    &quot;COMPETITORS&quot;: &quot;Competitor1, Competitor2&quot;
},
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;PS: I Tried with the Alias &quot;MULTIVALUE&quot; but that did not change a thing.&lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6705/is-there-way-to-send-mutlivalue-fields-values-through-the-api</guid>
<pubDate>Wed, 05 Oct 2022 16:01:01 +0000</pubDate>
</item>
<item>
<title>Read JSON column in Oracle</title>
<link>https://overflow.efficy.io/?qa=6649/read-json-column-in-oracle</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;does anyone know how to read a JSON value in Oracle. I need this to represent the value based on the value set in the JSON. But until now I'm not been able to read the JSON object with Oracle.&lt;/p&gt;

&lt;p&gt;I hope someone can help me with this.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Jeroen&lt;/p&gt;
</description>
<category>Database</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6649/read-json-column-in-oracle</guid>
<pubDate>Thu, 04 Aug 2022 07:21:19 +0000</pubDate>
</item>
<item>
<title>When inserting mail through JSON API, is it possible to fill MEMO with body of Mail</title>
<link>https://overflow.efficy.io/?qa=6342/when-inserting-mail-through-json-possible-fill-memo-with-body</link>
<description>&lt;p&gt;When inserting mail through JSON API, is it possible to fill MEMO with body of Mail just like the Outlook addin does this ?&lt;/p&gt;

&lt;p&gt;Meaning : Is there a function in Efficy that does this or does the customer need to extract the body from the .eml file and then set the MEMO field in the normal (API) way ?&lt;/p&gt;
</description>
<category>Efficy Integrations</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6342/when-inserting-mail-through-json-possible-fill-memo-with-body</guid>
<pubDate>Wed, 03 Nov 2021 09:04:14 +0000</pubDate>
</item>
<item>
<title>Alphanumeric field gives bizarre error in JSON API request</title>
<link>https://overflow.efficy.io/?qa=6318/alphanumeric-field-gives-bizarre-error-in-json-api-request</link>
<description>&lt;p&gt;when executing the following request&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[{
        &quot;@name&quot;: &quot;Edit&quot;,
        &quot;entity&quot;: &quot;Docu&quot;,
        &quot;commit&quot;: &quot;true&quot;,
        &quot;closecontext&quot;: &quot;true&quot;,
        &quot;@func&quot;: [{
                &quot;@name&quot;: &quot;update&quot;,
                &quot;@data&quot;: {
                    &quot;NAME&quot;: &quot;Klein testje 2021&quot;,
                    &quot;F_DIENST&quot;: 6,
                    &quot;F_TYPE&quot;: 70,
                    &quot;F_ONTVANGSTWIJZE&quot;: 0,
                    &quot;F_NR_AANGETEKEND&quot;: &quot;220309282357&quot;,
                    &quot;MEMOFORMATTED&quot;: 0,
                    &quot;MEMO&quot;: &quot;&quot;,
                    &quot;F_STATUS&quot;: 0
                }
            }
        ]
    }
]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;we get this error :&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&quot;#error&quot;: {&lt;br&gt;
                    &quot;errorcode&quot;: &quot;EConvertError&quot;,&lt;br&gt;
                    &quot;errorstring&quot;: &quot;'' is not a valid date and time&quot;&lt;br&gt;
                }&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The field &lt;code&gt;F_NR_AANGETEKEND&lt;/code&gt; is the problem.&lt;br&gt;
It's an alphanumeric field with a length of 32.&lt;/p&gt;

&lt;p&gt;values like &quot;&quot; or &quot;123&quot; or &quot;0&quot; etc are no problem.&lt;br&gt;
But values like this give the conversion error.&lt;br&gt;
Is this a bug or is there another way how we can force the API to see the value as a string ?&lt;/p&gt;

&lt;p&gt;This happens on a Efficy (Build 11.2.19857.0 2019-12-07 12:02)&lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6318/alphanumeric-field-gives-bizarre-error-in-json-api-request</guid>
<pubDate>Thu, 14 Oct 2021 18:22:26 +0000</pubDate>
</item>
<item>
<title>is there a way to make difference between '' and null value in a dataset returned by an sqlQueryDataset</title>
<link>https://overflow.efficy.io/?qa=6075/difference-between-value-dataset-returned-sqlquerydataset</link>
<description>&lt;p&gt;Hi all,&lt;/p&gt;

&lt;p&gt;When using something like &lt;code&gt;dataSetToJson(Efficy.sqlQueryDataset(MyQuery, &quot;&quot;))&lt;/code&gt; the result give me '' (empty value) for empty value fields, but also for null value fields.&lt;/p&gt;

&lt;p&gt;i've an idea of workaround with a coalesce in the query, but ... is there a standard or a better way to get the &quot;real&quot; null value ?&lt;/p&gt;

&lt;p&gt;Regards,&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=6075/difference-between-value-dataset-returned-sqlquerydataset</guid>
<pubDate>Mon, 10 May 2021 13:34:56 +0000</pubDate>
</item>
<item>
<title>Config when using json/node api in loadbalencer environnement</title>
<link>https://overflow.efficy.io/?qa=5717/config-when-using-json-node-api-loadbalencer-environnement</link>
<description>&lt;p&gt;Hi all,&lt;/p&gt;

&lt;p&gt;For a customer, we will need to use json/api node.&lt;br&gt;
Customer have actually an environnement with 2 &quot;frontend&quot; serveur behind a loadbalencer, and 1&quot;webservice&quot; serveur for soap call.&lt;/p&gt;

&lt;p&gt;Should we use the same infrastrucure and make json/node api call to the webservice serveur to avoid session problem ?&lt;br&gt;
Or is there something better to do ?&lt;/p&gt;

&lt;p&gt;regards,&lt;/p&gt;
</description>
<category>Efficy Installation/Settings</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5717/config-when-using-json-node-api-loadbalencer-environnement</guid>
<pubDate>Thu, 03 Dec 2020 08:48:55 +0000</pubDate>
</item>
<item>
<title>Is it possible to pass a null value in JSON API request?</title>
<link>https://overflow.efficy.io/?qa=5541/is-it-possible-to-pass-a-null-value-in-json-api-request</link>
<description>&lt;p&gt;To create a company I'm using the following JSON API request:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[
{
&quot;@name&quot;: &quot;edit&quot;,
&quot;entity&quot;: &quot;Comp&quot;,
&quot;key&quot;: 0,
&quot;commit&quot;: true,
&quot;@func&quot;: [
{
&quot;@name&quot;: &quot;update&quot;, 
&quot;@data&quot;: 
{
&quot;NAME&quot;: &quot;Test 01&quot;,
&quot;VAT&quot;: null
}
}
]
}
]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;but getting &quot;Unknown data type for field VAT&quot; error:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[
    {
        &quot;@name&quot;: &quot;edit&quot;,
        &quot;entity&quot;: &quot;Comp&quot;,
        &quot;commit&quot;: true,
        &quot;@func&quot;: [
            {
                &quot;@name&quot;: &quot;update&quot;,
                &quot;@data&quot;: {
                    &quot;NAME&quot;: &quot;Test 01&quot;,
                    &quot;VAT&quot;: null
                },
                &quot;#error&quot;: {
                    &quot;errorcode&quot;: &quot;EEfficyException&quot;,
                    &quot;errorstring&quot;: &quot;Unknown data type for field \&quot;VAT\&quot;&quot;,
                    &quot;detail&quot;: &quot;CORE-1326&quot;
                }
            }
        ],
        &quot;key&quot;: &quot;13&quot;,
        &quot;edithandle&quot;: &quot;2&quot;,
        &quot;#error&quot;: true
    },
    {
        &quot;@name&quot;: &quot;exception&quot;,
        &quot;#error&quot;: {
            &quot;errorcode&quot;: &quot;EEfficyException&quot;,
            &quot;errorstring&quot;: &quot;Unknown data type for field \&quot;VAT\&quot;&quot;,
            &quot;detail&quot;: &quot;CORE-1326&quot;
        }
    }
]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Is it possible to pass a null value somehow?&lt;br&gt;
Skipping the line will make the request to work, but sometimes it is necessary to pass a null (not an empty string, 0, etc) &lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5541/is-it-possible-to-pass-a-null-value-in-json-api-request</guid>
<pubDate>Wed, 19 Aug 2020 06:23:17 +0000</pubDate>
</item>
<item>
<title>JSON request with special characters</title>
<link>https://overflow.efficy.io/?qa=5466/json-request-with-special-characters</link>
<description>&lt;p&gt;I have a problem when I send a request with JSON body containing special characters =&amp;gt; The JSON is considered as malformed.&lt;br&gt;
Visual Studio displays it correctly &lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=11794893970812645402&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;But with Fiddler I see that a “é” is not well encoded, even if I specify the UTF-8 charset.&lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.io/?qa=blob&amp;amp;qa_blobid=14206281007164290948&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;
</description>
<category>WorkFlow / Serverscript</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5466/json-request-with-special-characters</guid>
<pubDate>Tue, 02 Jun 2020 09:33:44 +0000</pubDate>
</item>
<item>
<title>Is it possible to filter by null values using &quot;consultmanyex&quot; function (JSON API) ?</title>
<link>https://overflow.efficy.io/?qa=5222/possible-filter-null-values-using-consultmanyex-function</link>
<description>&lt;p&gt;I'm using the JSON API to call the &quot;consultmanyex&quot; function and search for an entity that meet a certain predicate.&lt;/p&gt;

&lt;p&gt;I would like to base my predicate on the existence of a value for a certain field.&lt;/p&gt;

&lt;p&gt;Do you have an idea of how I can specify a &quot;Null&quot; value in my predicate ?&lt;/p&gt;

&lt;p&gt;Here is a query example (that obviously does not work) of what I'm trying to achieve  : &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[{
    &quot;@name&quot;: &quot;api&quot;,
    &quot;commit&quot;: true,
    &quot;closecontext&quot;: true,
    &quot;@func&quot;: [
        {
            &quot;@name&quot;: &quot;consultmanyex&quot;,
            &quot;entity&quot;: &quot;ContComp&quot;,
            &quot;findfield&quot;: &quot;k_contact;d_end&quot;,
            &quot;keys&quot;: &quot;3544;NULL&quot;,
            &quot;separator&quot;: &quot;;&quot;
        }
    ]
}]
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5222/possible-filter-null-values-using-consultmanyex-function</guid>
<pubDate>Mon, 02 Mar 2020 07:08:22 +0000</pubDate>
</item>
<item>
<title>how to request via json api both a file name and it's contents by a key</title>
<link>https://overflow.efficy.io/?qa=5328/how-to-request-via-json-api-both-file-name-and-its-contents-key</link>
<description>&lt;p&gt;When I use the following json to request an attachment to a document, the response contains the byte stream (base64 encoded), but not the name of the attachment, and not the mime type. In addition, I need to know the key of the document; only the key of the attachment is not sufficient.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[
{
&quot;@name&quot;: &quot;edit&quot;,
&quot;entity&quot;: &quot;Docu&quot;,
&quot;key&quot;: 684362,
&quot;closecontext&quot;: true,
&quot;@func&quot;: [
{&quot;@name&quot;: &quot;attachment&quot;, &quot;key&quot;: &quot;888274_0&quot;}
]
}
]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Preferably it would be possible to request the file name, mime type, and contents of an attachment only by it's key. Can this perhaps be accomplished by an array of requests?&lt;/p&gt;

&lt;p&gt;Thanks in advance.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5328/how-to-request-via-json-api-both-file-name-and-its-contents-key</guid>
<pubDate>Mon, 02 Mar 2020 07:08:17 +0000</pubDate>
</item>
<item>
<title>Remote API: Trouble linking a Case to a Document with JSON</title>
<link>https://overflow.efficy.io/?qa=5308/remote-api-trouble-linking-a-case-to-a-document-with-json</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;when I try to link a Case to a newly created Document I get the following error:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
            &quot;@name&quot;: &quot;insertDetail&quot;,
            &quot;detail&quot;: &quot;Case&quot;,
            &quot;detailKey&quot;: 31,
            &quot;#error&quot;: {
                &quot;errorcode&quot;: &quot;EConvertError&quot;,
                &quot;errorstring&quot;: &quot;'' is not a valid floating point value&quot;
            }
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I'm using the flowing to link the Case to the Document:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
&quot;@name&quot;: &quot;insertDetail&quot;,
&quot;detail&quot;: &quot;Case&quot;,
&quot;detailKey&quot;: 31
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;What could be the cause of this error?&lt;/p&gt;

&lt;p&gt;PS. When I try to link in Efficy a Case to a Document I don't have any issues.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Jeroen&lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5308/remote-api-trouble-linking-a-case-to-a-document-with-json</guid>
<pubDate>Wed, 12 Feb 2020 12:39:13 +0000</pubDate>
</item>
<item>
<title>Insert an attachment through JSON?</title>
<link>https://overflow.efficy.io/?qa=5300/insert-an-attachment-through-json</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;does anyone know how to insert an attachment through JSON?&lt;br&gt;
I need this for a customer who wants to insert documents from a website.&lt;/p&gt;

&lt;p&gt;Best regards,&lt;br&gt;
Jeroen&lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=5300/insert-an-attachment-through-json</guid>
<pubDate>Wed, 12 Feb 2020 09:19:07 +0000</pubDate>
</item>
<item>
<title>How to use Remote Api when sso is activated</title>
<link>https://overflow.efficy.io/?qa=4914/how-to-use-remote-api-when-sso-is-activated</link>
<description>&lt;p&gt;Hi All,&lt;/p&gt;

&lt;p&gt;I have made an listle custom using /json and /node api.&lt;br&gt;
Working good on the customer test server, but not in their prod server because sso is activated.&lt;/p&gt;

&lt;p&gt;(receive a 401 access denied, exactly like you click cancel on the pop windows when trying to connect with a browser)&lt;/p&gt;

&lt;p&gt;what do i need to do ?&lt;br&gt;
sending &quot;something&quot; in the header of the request for sso ?&lt;br&gt;
configuring &quot;something&quot; on the server to don't use sso for the remote api ?&lt;br&gt;
other ?&lt;/p&gt;

&lt;p&gt;Regards.&lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4914/how-to-use-remote-api-when-sso-is-activated</guid>
<pubDate>Mon, 14 Oct 2019 09:29:37 +0000</pubDate>
</item>
<item>
<title>Download CONTACTS.PICTURE using api</title>
<link>https://overflow.efficy.io/?qa=4684/download-contacts-picture-using-api</link>
<description>&lt;p&gt;Is it possible to download pictures from for example contacts.picture using a json API request? I cannot find any documentation about this. &lt;/p&gt;
</description>
<category>Remote API (JSON, SOAP, Node)</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4684/download-contacts-picture-using-api</guid>
<pubDate>Mon, 12 Aug 2019 13:24:51 +0000</pubDate>
</item>
<item>
<title>API calls to a test environment reflects request body?</title>
<link>https://overflow.efficy.io/?qa=4025/api-calls-to-a-test-environment-reflects-request-body</link>
<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I've been trying to use the json api on a test environment. Every time I send a request, it just reflects the json body I sent back to me instead of the data I request.&lt;/p&gt;

&lt;p&gt;I use this url: {testenvironment}/crm/json &lt;/p&gt;

&lt;p&gt;These are the request headers: &lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=2203283872685182108&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;These are the response headers:&lt;br&gt;
&lt;img src=&quot;https://overflow.efficy.com/?qa=blob&amp;amp;qa_blobid=9542841644501376705&quot; alt=&quot;enter image description here&quot;&gt;&lt;/p&gt;

&lt;p&gt;I have a feeling I'm missing something obvious.&lt;/p&gt;
</description>
<category>Efficy/ Client side</category>
<guid isPermaLink="true">https://overflow.efficy.io/?qa=4025/api-calls-to-a-test-environment-reflects-request-body</guid>
<pubDate>Tue, 26 Mar 2019 11:07:21 +0000</pubDate>
</item>
</channel>
</rss>