New way to request Help Center article feedback | The place for Zendesk users to come together and share
Skip to main content
Solved

New way to request Help Center article feedback

  • June 13, 2025
  • 2 replies
  • 1 view

I am struggling with the steps in this article https://support.zendesk.com/hc/en-us/community/posts/6485027590426-Guide-Tip-New-way-to-request-feedback-for-article-downvotes?sort_by=created_at&sort_order=desc

In this section of the code: custom_fields: [
            { id: 12386706806425, value: form.url }, //article URL, replace ID with your custom field
            { id: 900005760523, value: reason }, //feedback reason, replace ID with your custom field
          ],
          ticket_form_id: 900000044103, //your article feedback form, replace with your custom form ID
        },

 

what is custom field id for form.url? I do not understand where to find this. 
I have the custom field for reason and the ticket form ID. Where might I find the form.url ID?

Thank you for any information!

Best answer by Ruben14

You don’t actually “find” the ID for form.url in Zendesk, it’s not a built-in field.

 

The idea is that you need a custom ticket field to store the article URL whenever someone submits feedback. To make that work, create a new ticket field in Admin Center (Objects and rules > Tickets > Fields), choose “Text” as the type, name it something like “Article URL,” and save it.

 

Once created, Zendesk gives it a numeric ID, and that’s the value you’ll drop into the code instead of the placeholder 12386706806425
(https://developer.zendesk.com/api-reference/ticketing/tickets/tickets/#setting-custom-field-values)

So your snippet becomes valid when you replace the placeholder with your actual custom field ID. The form.url part just means “take the current article URL and populate that field,” but it only works if you’ve already set up a custom field to accept it.

2 replies

Francis14
  • Employee
  • June 26, 2025
Hi Becky,
 
The form.url in the code is the article URL value you want to store, not the custom field ID. You need to create a custom ticket field in Zendesk Support to hold the article URL if you haven’t already. Then find that custom field’s ID in Admin Center under Tickets > Fields and replace the placeholder ID in the code with it.

Ruben14
  • Answer
  • September 17, 2025

You don’t actually “find” the ID for form.url in Zendesk, it’s not a built-in field.

 

The idea is that you need a custom ticket field to store the article URL whenever someone submits feedback. To make that work, create a new ticket field in Admin Center (Objects and rules > Tickets > Fields), choose “Text” as the type, name it something like “Article URL,” and save it.

 

Once created, Zendesk gives it a numeric ID, and that’s the value you’ll drop into the code instead of the placeholder 12386706806425
(https://developer.zendesk.com/api-reference/ticketing/tickets/tickets/#setting-custom-field-values)

So your snippet becomes valid when you replace the placeholder with your actual custom field ID. The form.url part just means “take the current article URL and populate that field,” but it only works if you’ve already set up a custom field to accept it.