<?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>question Re: Incident description field not updated via API call in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757153#M414079</link>
    <description>&lt;P&gt;Thanks Alok! This was helpful!&lt;/P&gt;</description>
    <pubDate>Mon, 24 May 2021 07:10:02 GMT</pubDate>
    <dc:creator>SP6</dc:creator>
    <dc:date>2021-05-24T07:10:02Z</dc:date>
    <item>
      <title>Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757145#M414071</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Was trying to create incident in ServiceNow via the below API curl call but the incident description field is not updated for regular users, it works for admin though! There was an access control (ACL) for description which I deleted but still the description field is blank when incident is created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Curl Call -&lt;/P&gt;
&lt;P&gt;curl --location --request POST 'https://dev80009.service-now.com/api/now/table/incident' \&lt;BR /&gt;--header 'Accept: application/json' \&lt;BR /&gt;--header 'Content-Type: application/json' \&lt;BR /&gt;--header 'Authorization: Basic dGVzdDp0ZXN0' \&lt;BR /&gt;--header 'Cookie: BIGipServerpool_dev80009=2609075978.55360.0000; JSESSIONID=03AB5C528F99C3FE4CA1954E3EAA8747; glide_user_activity=U0N2MzpVb1RSTjJDSG9ZOEJTQnR2eWFIQ0tqNmRROFZCcVQzTTpPRWpoYm1jZVBML28vWktCT0E5Y2VYclNac0pldXpsQmpINlBLV251ZktrPQ==; glide_user_route=glide.e0bd65849cb91a6b8a16a2533b5fca6d' \&lt;BR /&gt;--data-raw '{"short_description":"short test","description":"test"}'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can someone suggest what should be done here?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ACL which was deleted -&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204719i69ECFD7DCEF803D8/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;NO ACL for description -&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204718iAE8C3F44D50BF197/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Postman result with description blank -&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204717i9FD60C401F60BD77/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 15:44:45 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757145#M414071</guid>
      <dc:creator>SP6</dc:creator>
      <dc:date>2021-05-18T15:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757146#M414072</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;So if there is no ACL for table.field, but the table is extended from another table, and that field derives from this other table...then it will use that parent table's ACL for that field (if applicable).&lt;/P&gt;
&lt;P&gt;With that said, there is an ACL for task.description which requires: itil or task_editor roles to edit it.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204714iACC2F0BC1EC46231/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So either create a new write ACL for the incident table.description and adjust role and/or condition as appropriate or consider revising this one that is out of box, but I would suggest against doing that.&lt;/P&gt;
&lt;P&gt;You can also debug security rules yourself as that end-user (impersonate) and see that they'd be unable to write to it:&amp;nbsp;&lt;A href="https://docs.servicenow.com/bundle/quebec-platform-administration/page/administer/contextual-security/concept/c_AccessControlRulesDebug.html" rel="nofollow"&gt;https://docs.servicenow.com/bundle/quebec-platform-administration/page/administer/contextual-security/concept/c_AccessControlRulesDebug.html&lt;/A&gt;&amp;nbsp;and why.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Please mark reply as Helpful/Correct, if applicable. Thanks!&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 15:57:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757146#M414072</guid>
      <dc:creator>Allen Andreas</dc:creator>
      <dc:date>2021-05-18T15:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757147#M414073</link>
      <description>&lt;P&gt;Hi SP,&lt;/P&gt;
&lt;P&gt;Did you checked with static value?&lt;/P&gt;
&lt;P&gt;Is your Description have special characters?&lt;/P&gt;
&lt;P&gt;Have you tried it with REST API Explorer?&lt;/P&gt;
&lt;P&gt;Thank you&lt;BR /&gt;Prasad&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 15:58:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757147#M414073</guid>
      <dc:creator>Prasad Pagar</dc:creator>
      <dc:date>2021-05-18T15:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757148#M414074</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Create a new ACL on incident description field as below and your issue will be resolved.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204710i42CDEB501BA3735C/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204713i3426AA2DF1090F1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will allow your service account to update the incident description without any role restriction.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Now, talking about the situation where OOB ACL (which you deleted) is existing.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;In that case you could have done by creating another write ACL on Incident Description field with condition as below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204712i52D89BD88D855E85/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Kindly mark my answer as Correct and Helpful based on the Impact.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Regards,&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Alok&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 16:17:02 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757148#M414074</guid>
      <dc:creator>AlokD6499012040</dc:creator>
      <dc:date>2021-05-18T16:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757149#M414075</link>
      <description>&lt;P&gt;Hi SP,&lt;/P&gt;
&lt;P&gt;Please let me know if you need further assistance.&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;EM&gt;If my reply above helped guide you Correctly, please mark it as Correct.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 19 May 2021 12:43:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757149#M414075</guid>
      <dc:creator>Allen Andreas</dc:creator>
      <dc:date>2021-05-19T12:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757150#M414076</link>
      <description>&lt;P&gt;Hi SP,&lt;/P&gt;
&lt;P&gt;Please let me know if you need further assistance.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;If my reply above helped guide you Correctly, please mark it as Correct.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2021 13:09:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757150#M414076</guid>
      <dc:creator>Allen Andreas</dc:creator>
      <dc:date>2021-05-20T13:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757151#M414077</link>
      <description>&lt;P&gt;&lt;EM&gt;Hi,&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Hope you are doing well!&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Just following up, did my response or the other response answered your query then please do mark the appropriate answer as Correct and close this thread.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Regards,&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Alok&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 17:18:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757151#M414077</guid>
      <dc:creator>AlokD6499012040</dc:creator>
      <dc:date>2021-05-21T17:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757152#M414078</link>
      <description>&lt;P&gt;Hi SP,&lt;/P&gt;
&lt;P&gt;Please let me know if you need further assistance.&lt;/P&gt;
&lt;P&gt;I covered this above initially about why there is an issue with the incident description field and explained to either adjust that ACL as you need &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/SPAN&gt;....create a write ACL for the incident.description field. Please refer to my reply above that was initially sent.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;If my reply above helped guide you Correctly, please mark it as Correct.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Thanks! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 18:56:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757152#M414078</guid>
      <dc:creator>Allen Andreas</dc:creator>
      <dc:date>2021-05-21T18:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757153#M414079</link>
      <description>&lt;P&gt;Thanks Alok! This was helpful!&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 07:10:02 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757153#M414079</guid>
      <dc:creator>SP6</dc:creator>
      <dc:date>2021-05-24T07:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757154#M414080</link>
      <description>&lt;P&gt;Thanks Allen for the help! Marked this helpful!&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 07:16:05 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757154#M414080</guid>
      <dc:creator>SP6</dc:creator>
      <dc:date>2021-05-24T07:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757155#M414081</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Alright, that's fine.&lt;/P&gt;
&lt;P&gt;Just to reiterate again, I covered creating the ACL in my post above, but also wanted to explain why you'd have to.&lt;/P&gt;
&lt;P&gt;Thanks and take care!&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 14:13:09 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757155#M414081</guid>
      <dc:creator>Allen Andreas</dc:creator>
      <dc:date>2021-05-24T14:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757156#M414082</link>
      <description>&lt;P&gt;After going to access controls tab, I cant see button to create new access control.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mine is developer account. How can I get access to create access control?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 10:20:04 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757156#M414082</guid>
      <dc:creator>Anil83</dc:creator>
      <dc:date>2021-12-15T10:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757157#M414083</link>
      <description>&lt;P&gt;I am unable to create new ACL from my account.&lt;/P&gt;
&lt;P&gt;Mine is developer account. do we need to do any configuration/setting changes to access creation of new ACL ?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 10:28:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757157#M414083</guid>
      <dc:creator>Anil83</dc:creator>
      <dc:date>2021-12-15T10:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Incident description field not updated via API call</title>
      <link>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757158#M414084</link>
      <description>&lt;P&gt;Make sure you have security_admin role and you elevated the security admin role to make any changes to ACL or create a new one.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204711i0295247AB4099018/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="find_real_file.png"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/204716iF1874666C780E06D/image-size/large?v=v2&amp;amp;px=999" role="button" title="find_real_file.png" alt="find_real_file.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 12:14:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/incident-description-field-not-updated-via-api-call/m-p/1757158#M414084</guid>
      <dc:creator>AlokD6499012040</dc:creator>
      <dc:date>2021-12-15T12:14:31Z</dc:date>
    </item>
  </channel>
</rss>

