We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fcecfe commit 7df8991Copy full SHA for 7df8991
src/Umbraco.Cms.Integrations.Automation.Zapier/Controllers/PollingController.cs
@@ -82,7 +82,7 @@ public IEnumerable<PublishedContentDto> GetSampleContent()
82
83
return rootNodes.Select(p => new PublishedContentDto
84
{
85
- Id = p.Id,
+ Id = p.Id.ToString(),
86
Name = p.Name,
87
PublishDate = p.PublishDate.Value.ToString()
88
});
src/Umbraco.Cms.Integrations.Automation.Zapier/Models/Dtos/PublishedContentDto.cs
@@ -5,7 +5,7 @@ namespace Umbraco.Cms.Integrations.Automation.Zapier.Models.Dtos
5
public class PublishedContentDto
6
7
[JsonProperty("id")]
8
- public int Id { get; set; }
+ public string Id { get; set; }
9
10
[JsonProperty("name")]
11
public string Name { get; set; }
0 commit comments