<?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: API endpoint error / not returning expected results. in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/API-endpoint-error-not-returning-expected-results/m-p/3871905#M52040</link>
    <description>&lt;P&gt;Great, thanks&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp; - appreciate the help.&lt;BR /&gt;Custom field ID is 2199 and an example project ID is 414125&lt;BR /&gt;I have tried this /api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125 but pulling returns the following error&lt;BR /&gt;&lt;BR /&gt;DataSource.Error: Web.Contents failed to get contents from '&lt;A href="https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125" target="_blank" rel="noopener"&gt;https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125&lt;/A&gt;' (500): Internal Server Error&lt;BR /&gt;Details:&lt;BR /&gt;DataSourceKind=Web&lt;BR /&gt;DataSourcePath=&lt;A href="https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId" target="_blank" rel="noopener"&gt;https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId&lt;/A&gt;&lt;BR /&gt;Url=&lt;A href="https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125" target="_blank" rel="noopener"&gt;https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 03 May 2024 04:45:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-05-03T04:45:55Z</dc:date>
    <item>
      <title>API endpoint error / not returning expected results.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/API-endpoint-error-not-returning-expected-results/m-p/3861118#M51925</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I am pulling data from Workguru (our project management software) via API. All working ok however I cannot seem to get the data for a custom field.&lt;BR /&gt;This is the Swagger page&amp;nbsp;Swagger UI (workguru.io)&amp;nbsp;&lt;A href="https://api.workguru.io/swagger/index.html" target="_blank"&gt;https://api.workguru.io/swagger/index.html&lt;/A&gt;&lt;BR /&gt;This one pulls the detail of the correct custom field&amp;nbsp;&lt;A href="https://api.workguru.io/api/services/app/CustomField/GetCustomFieldById?id=2199" target="_blank" rel="noopener"&gt;https://api.workguru.io/api/services/app/CustomField/GetCustomFieldById?id=2199&lt;/A&gt;&lt;BR /&gt;However I cannot pull the value of that field in any of the projects.&lt;BR /&gt;I think this is the correct endpoint but unsure of the requirements for the description.&amp;nbsp;/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated - thanks&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2024 10:07:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/API-endpoint-error-not-returning-expected-results/m-p/3861118#M51925</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-23T10:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: API endpoint error / not returning expected results.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/API-endpoint-error-not-returning-expected-results/m-p/3864430#M51957</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Base on your description, i&lt;SPAN&gt;t seems like you're having trouble pulling the value of a custom field in Workguru via API: /api/services/app/CustomField/GetCustomFieldValuesByTypeAndId.&amp;nbsp;To use this endpoint, you'll need to provide two parameters: '&lt;STRONG&gt;&lt;EM&gt;customFieldTypeId&lt;/EM&gt;&lt;/STRONG&gt;' and '&lt;STRONG&gt;&lt;EM&gt;entityId&lt;/EM&gt;&lt;/STRONG&gt;'.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'customFieldTypeId' refers to the ID of the custom field type you're trying to retrieve, you can get it from the returned detail of&amp;nbsp; `/api/services/app/CustomField/GetCustomFieldById` endpoint.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;As for the `entityId`, you'll need to provide the ID of the project you're trying to retrieve the custom field value for. Once you have both of these parameters, you can make a GET request to the `/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId` endpoint with the appropriate values and it should return the custom field value for that project.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 06:57:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/API-endpoint-error-not-returning-expected-results/m-p/3864430#M51957</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-24T06:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: API endpoint error / not returning expected results.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/API-endpoint-error-not-returning-expected-results/m-p/3871905#M52040</link>
      <description>&lt;P&gt;Great, thanks&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp; - appreciate the help.&lt;BR /&gt;Custom field ID is 2199 and an example project ID is 414125&lt;BR /&gt;I have tried this /api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125 but pulling returns the following error&lt;BR /&gt;&lt;BR /&gt;DataSource.Error: Web.Contents failed to get contents from '&lt;A href="https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125" target="_blank" rel="noopener"&gt;https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125&lt;/A&gt;' (500): Internal Server Error&lt;BR /&gt;Details:&lt;BR /&gt;DataSourceKind=Web&lt;BR /&gt;DataSourcePath=&lt;A href="https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId" target="_blank" rel="noopener"&gt;https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId&lt;/A&gt;&lt;BR /&gt;Url=&lt;A href="https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125" target="_blank" rel="noopener"&gt;https://api.workguru.io/api/services/app/CustomField/GetCustomFieldValuesByTypeAndId?customFieldTypeId=2199&amp;amp;entityid=414125&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 04:45:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/API-endpoint-error-not-returning-expected-results/m-p/3871905#M52040</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-05-03T04:45:55Z</dc:date>
    </item>
  </channel>
</rss>

