<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: I need to send a document of a Software for Alfresco in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103152#M29391</link>
    <description>&lt;P&gt;Sorry, I don't know PHP, you should find this answer somewhere else. The only thing I could tell you is that content-type should be&amp;nbsp;multipart/form-data.&lt;/P&gt;</description>
    <pubDate>Wed, 25 Mar 2020 07:01:39 GMT</pubDate>
    <dc:creator>narkuss</dc:creator>
    <dc:date>2020-03-25T07:01:39Z</dc:date>
    <item>
      <title>I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103149#M29388</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I need to send a document of a Software for Alfresco. I am using this service&amp;nbsp;&lt;A href="http://127.0.0.1:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/-shared-/children" target="_blank" rel="noopener nofollow noreferrer"&gt;http://127.0.0.1:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/-shared-/children&lt;/A&gt; for create a document but i need send a file. For example:&amp;nbsp;Send a PDF document to Alfresco.&lt;/P&gt;&lt;P&gt;What service can I consume for this?&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2020 18:35:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103149#M29388</guid>
      <dc:creator>viperboys</dc:creator>
      <dc:date>2020-03-23T18:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103150#M29389</link>
      <description>&lt;P&gt;You can use the same endpoint, but you should send your data as multipart-form-data.&lt;/P&gt;&lt;P&gt;Depending on your version, you can look at localhost:8080/api-explorer, or go to&amp;nbsp;&lt;A href="https://api-explorer.alfresco.com/api-explorer/#!/nodes/createNode" target="_blank" rel="nofollow noopener noreferrer"&gt;https://api-explorer.alfresco.com/api-explorer/#!/nodes/createNode&lt;/A&gt; for more info.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 07:08:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103150#M29389</guid>
      <dc:creator>narkuss</dc:creator>
      <dc:date>2020-03-24T07:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103151#M29390</link>
      <description>&lt;P&gt;Thank you very much for answering ..&lt;/P&gt;&lt;P&gt;Can you give me a use case to do this with PHP? This is my code for create a document&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;BR /&gt;set_time_limit(180);&lt;BR /&gt;$ticket =(isset($_POST['ticket'])) ? $_POST['ticket'] : 0;&lt;BR /&gt;$nid = (isset($_POST['name'])) ? $_POST['name'] : 0;&lt;/P&gt;&lt;P&gt;$data = array("name"=&amp;gt;"test.txt","nodeType" =&amp;gt;"cm:content");&lt;/P&gt;&lt;P&gt;$data_string = json_encode($data);&lt;/P&gt;&lt;P&gt;$ch = curl_init('&lt;A href="http://127.0.0.1:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/-shared-/children?alf_ticket='.$ticket" target="_blank" rel="nofollow noopener noreferrer"&gt;http://127.0.0.1:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/-shared-/children?alf_ticket='.$ticket&lt;/A&gt;);&lt;BR /&gt;curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");&lt;BR /&gt;curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);&lt;BR /&gt;curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);&lt;BR /&gt;curl_setopt($ch, CURLOPT_HTTPHEADER, array(&lt;BR /&gt;'Content-Type: application/json',&lt;BR /&gt;'Content-Length: ' . strlen($data_string))&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;$result = curl_exec($ch);&lt;BR /&gt;if(curl_errno($ch) !== 0) {&lt;BR /&gt;error_log('cURL error when connecting to ' . $url . ': ' . curl_error($ch));&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;curl_close($ch);&lt;BR /&gt;print_r($result);&lt;/P&gt;&lt;P&gt;?&amp;gt;&lt;/P&gt;&lt;P&gt;What do I need to add to send a document in pdf?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 17:49:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103151#M29390</guid>
      <dc:creator>viperboys</dc:creator>
      <dc:date>2020-03-24T17:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103152#M29391</link>
      <description>&lt;P&gt;Sorry, I don't know PHP, you should find this answer somewhere else. The only thing I could tell you is that content-type should be&amp;nbsp;multipart/form-data.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 07:01:39 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103152#M29391</guid>
      <dc:creator>narkuss</dc:creator>
      <dc:date>2020-03-25T07:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103153#M29392</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/80230"&gt;@viperboys&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;What version of PHP are you using? Also, what's the scenario where you will be using this?&lt;/P&gt;
&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 12:11:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103153#M29392</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-03-25T12:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103154#M29393</link>
      <description>&lt;P&gt;Ok, thank you very much!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 14:00:33 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103154#M29393</guid>
      <dc:creator>viperboys</dc:creator>
      <dc:date>2020-03-25T14:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103155#M29394</link>
      <description>&lt;P&gt;Hi, &lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/76783"&gt;@EddieMay&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I need to send a WordPress document to Alfresco.&amp;nbsp;In wordpress I use a plugin called GravityForm to use form. To create the flows I use GravityFlow. The GravityFlow plugin has an add-on called WebHook for API use. At a certain step I need to send a document to Alfresco. This is the documentation&amp;nbsp;&lt;A href="https://docs.gravityflow.io/article/126-incoming-webhook" target="_blank" rel="nofollow noopener noreferrer"&gt;https://docs.gravityflow.io/article/126-incoming-webhook&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thank you..&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 14:09:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103155#M29394</guid>
      <dc:creator>viperboys</dc:creator>
      <dc:date>2020-03-25T14:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103156#M29395</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/80230"&gt;@viperboys&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;There's this &lt;A href="https://github.com/donbalon4/API_Alfresco" target="_self" rel="nofollow noopener noreferrer"&gt;library&lt;/A&gt;&amp;nbsp; - there's a discussion &lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-forum/how-to-upload-file-in-alfresco/td-p/135616" target="_self" rel="nofollow noopener noreferrer"&gt;here&lt;/A&gt; about utilising this library, which is an implementation of Apache Chemistry CMIS. There is an example php upload file &lt;A href="https://hub.alfresco.com/t5/alfresco-content-services-hub/php-upload-docx/ba-p/289771" target="_self" rel="nofollow noopener noreferrer"&gt;here&lt;/A&gt;, with usage instructions, for another approach.&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 17:22:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103156#M29395</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-03-25T17:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103157#M29396</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/76783"&gt;@EddieMay&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much .. This has helped me a lot.&lt;/P&gt;&lt;P&gt;Finally .. What service can I use to create a document and that its contents are metadata of the form? And if there is any use case to use it in POSTMAN.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 17:32:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103157#M29396</guid>
      <dc:creator>viperboys</dc:creator>
      <dc:date>2020-03-25T17:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103158#M29397</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/80230"&gt;@viperboys&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Postman - I use it to manually test api calls, easier than debugging Alfresco, etc. Here are two introductions -&lt;A href="https://www.srijan.net/blog/manual-api-testing-using-postman" target="_self" rel="nofollow noopener noreferrer"&gt;1&lt;/A&gt;, &lt;A href="https://www.toolsqa.com/postman-tutorial/" target="_self" rel="nofollow noopener noreferrer"&gt;2&lt;/A&gt;.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Alfresco call will look something like this:&lt;/P&gt;
&lt;P&gt;http://localhost:8080/alfresco/api/-default-/public/cmis/versions/1.1/browser/root?objectId=&lt;STRONG&gt;d140f140-2701-4ca6-8a80-8cdc9cd3b72c&lt;/STRONG&gt;&amp;amp;cmisaction=createDocument&amp;amp;propertyId[0]=cmis:name&amp;amp;propertyValue[0]=ThirdPartyFormApigee.jpg&amp;amp;propertyId[1]=cmis&lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;bjectTypeId&amp;amp;propertyValue[1]=cmis:document&amp;amp;alf_ticket=&lt;STRONG&gt;TICKET_3375c54fb50e6251d9e57f696483708ff9cc653a&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;obectid=d140f140-2701-4ca6-8a80-8cdc9cd3b72c = the destination folder id&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The thing to note with CMIS is that you're actually creating a new document in Alfresco - hence you need &lt;SPAN&gt;&amp;nbsp;to pass the content stream - in effect the document you're uploading is created as a new document in Alfresco.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Another thing to note is Apache Chemistry CMIS implementation does not support &lt;A href="http://chemistry.apache.org/php/phpfunctioncoverage.html" target="_self" rel="nofollow noopener noreferrer"&gt;versioning&lt;/A&gt; - or at least as far as I can tell. However, this &lt;A href="https://stackoverflow.com/questions/36717011/how-to-do-file-versioning-when-uploading-files-to-alfresco-using-cmis-php" target="_self" rel="nofollow noopener noreferrer"&gt;StackOverflow&lt;/A&gt; mentions it may be possible using a different library.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2020 18:01:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103158#M29397</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-03-25T18:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103159#M29398</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/76783"&gt;@EddieMay&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;Thanks for your valuable help.&amp;nbsp;Yesterday I tried to do the same but I have this error.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"exception"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"invalidArgument"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"message"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Invalid&amp;nbsp;form&amp;nbsp;encoding!"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;BR /&gt;I am doing these tests with Postman&lt;BR /&gt;URL:&amp;nbsp;&lt;A href="http://127.0.0.1:8080/alfresco/api/-default-/public/cmis/versions/1.1/browser/root?objectId=45a0643c-7f85-45d9-837c-b771edff2673&amp;amp;cmisaction=createDocument&amp;amp;propertyId[0]=cmis:name&amp;amp;propertyValue[0]=ThirdPartyFormApigee.jpg&amp;amp;propertyId[1]=cmisSmiley" target="_blank" rel="nofollow noopener noreferrer"&gt;http://127.0.0.1:8080/alfresco/api/-default-/public/cmis/versions/1.1/browser/root?objectId=45a0643c-7f85-45d9-837c-b771edff2673&amp;amp;cmisaction=createDocument&amp;amp;propertyId[0]=cmis:name&amp;amp;propertyValue[0]=ThirdPartyFormApigee.jpg&amp;amp;propertyId[1]=cmisSmiley&lt;/A&gt; SurprisedbjectTypeId&amp;amp;propertyValue[1]=cmis:document&amp;amp;alf_ticket=TICKET_bd5a46d1fcf87aca154220f959d19d141abc0903&lt;BR /&gt;&lt;BR /&gt;Method POST&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 25 Mar 2020 18:37:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103159#M29398</guid>
      <dc:creator>viperboys</dc:creator>
      <dc:date>2020-03-25T18:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103160#M29399</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/80230"&gt;@viperboys&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;I've just used Postman to upload two documents to my home&amp;nbsp; directory in Alfresco.&lt;/P&gt;
&lt;P&gt;Here is the generated PHP code from Postman:&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL =&amp;gt; "http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/-my-/children?alf_ticket=TICKET_53451c24e8042867a93f0d129bbd3b1f5e2a5a55",
  CURLOPT_RETURNTRANSFER =&amp;gt; true,
  CURLOPT_ENCODING =&amp;gt; "",
  CURLOPT_MAXREDIRS =&amp;gt; 10,
  CURLOPT_TIMEOUT =&amp;gt; 0,
  CURLOPT_FOLLOWLOCATION =&amp;gt; true,
  CURLOPT_HTTP_VERSION =&amp;gt; CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST =&amp;gt; "POST",
  CURLOPT_POSTFIELDS =&amp;gt; array('filedata'=&amp;gt; new CURLFILE('/Users/emay/Documents/Alfresco - a developer led strategy.pptx')),
  CURLOPT_HTTPHEADER =&amp;gt; array(
    "Authorization: Basic dGVzdDp0ZXN0"
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
&lt;/PRE&gt;
&lt;P&gt;Attached you can see the files in Share.&lt;/P&gt;
&lt;P&gt;Here's the code for uploading a jpg file:&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL =&amp;gt; "http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/-my-/children?alf_ticket=TICKET_53451c24e8042867a93f0d129bbd3b1f5e2a5a55",
  CURLOPT_RETURNTRANSFER =&amp;gt; true,
  CURLOPT_ENCODING =&amp;gt; "",
  CURLOPT_MAXREDIRS =&amp;gt; 10,
  CURLOPT_TIMEOUT =&amp;gt; 0,
  CURLOPT_FOLLOWLOCATION =&amp;gt; true,
  CURLOPT_HTTP_VERSION =&amp;gt; CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST =&amp;gt; "POST",
  CURLOPT_POSTFIELDS =&amp;gt; array('filedata'=&amp;gt; new CURLFILE('/Users/emay/Downloads/eddie.may.jpg')),
  CURLOPT_HTTPHEADER =&amp;gt; array(
    "Authorization: Basic dGVzdDp0ZXN0"
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
&lt;/PRE&gt;
&lt;P&gt;Hopefully this should give you a start to resolving your problem.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 16:55:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103160#M29399</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-03-26T16:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103161#M29400</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/76783"&gt;@EddieMay&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am very grateful for your help.&amp;nbsp;I am a little confused, this is because I am new to this area.&lt;/P&gt;&lt;P&gt;That php code was generated by Postman?&amp;nbsp;How can I use it with postman? I have always used a URL, the method and send a JSON. This is how it worked for me but what you send me I don't know how to put it in Postman.&lt;/P&gt;&lt;P&gt;I hope you can help me. Thank you very much and happy day.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 13:59:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103161#M29400</guid>
      <dc:creator>viperboys</dc:creator>
      <dc:date>2020-03-27T13:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103162#M29401</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/80230"&gt;@viperboys&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Don't worry - we were all new to this at one time. Some of us (like me) still are!!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code I shared was acutally generated by Postman. The app has a "generate code" option - you can select the language &amp;amp; et voila! There are several languages available, including javascript such as Node. On my Mac the code button is to the right, below the Send button (see attached)&lt;/P&gt;
&lt;P&gt;I'm thinking you can perhaps incorporate the url call &amp;amp; data into your&lt;SPAN&gt;GravityFlow plugin WebHook.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;HTH,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 14:24:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103162#M29401</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-03-27T14:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103163#M29402</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/80230"&gt;@viperboys&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;In Postman I'd recommend getting the call to work - this will prove the concept that you can post a file to Alfresco using the Alfresco API.&lt;/P&gt;
&lt;P&gt;Then in Postman you could begin to override the body of your working method to use JSON to include the file, authentication, etc. If you click on the body section and select Raw, you have json as an option (see attached).&lt;/P&gt;
&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 14:28:49 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103163#M29402</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-03-27T14:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103164#M29403</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/76783"&gt;@EddieMay&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now it worked. Thank you very much for your valuable help.&lt;/P&gt;&lt;P&gt;God bless you.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 15:26:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103164#M29403</guid>
      <dc:creator>viperboys</dc:creator>
      <dc:date>2020-03-27T15:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: I need to send a document of a Software for Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103165#M29404</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/80230"&gt;@viperboys&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Great news &amp;amp; happy to help. Have a great weekend!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 16:28:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-need-to-send-a-document-of-a-software-for-alfresco/m-p/103165#M29404</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-03-27T16:28:03Z</dc:date>
    </item>
  </channel>
</rss>

