V13.2.2
In a WorkFlow I've saved a new page and want to get the URL of one of it's images, to send of to an external API, before the Workflow completes. So far I have this:-
```var pageRef = _contentService.SaveAndPublish(advertiserPage);
GuidUdi adPageUdi = pageRef.Content.GetUdi();
var adPage = _contentService.GetById(adPageUdi.Guid); // <--- Seems to be ok so far!
var logoImageRef = adPage.GetValue("logoImage") as Udi; // <--- I get Null here although the image exists in the saved page
IMedia logoImage = _mediaService.GetById(logoImageRef.AsGuid());```
I've been round and round this and can't work it out.
Actually I could also do with the URL for the page itself as well.
Any pointers would be appreciated.
Thanks.