diff --git a/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md b/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md index b9905c4600a..a45933a5940 100644 --- a/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md +++ b/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md @@ -14,7 +14,7 @@ In this article, we'll look into how you can work with the `IDeliveryApiProperty The examples in this article revolve around the fictional `My.Custom.Picker` property editor. This property editor stores the key of a single content item and is backed by a property value converter. -We will not dive into the details of creating a custom property editor for Umbraco in this article. If you need guidance on that, refer to the [Creating a Property Editor](https://docs.umbraco.com/umbraco-cms/tutorials/creating-a-property-editor) and [Property Value Converters](https://docs.umbraco.com/umbraco-cms/extending/property-editors/property-value-converters) articles. +We will not dive into the details of creating a custom property editor for Umbraco in this article. If you need guidance on that, refer to the [Creating a Property Editor](https://docs.umbraco.com/umbraco-cms/tutorials/creating-a-property-editor) and [Property Value Converters](../../extending/property-editors/property-value-converters) articles. ## Implementation @@ -24,7 +24,7 @@ The code example below showcases the implementation of this interface in the pro Towards the end of the example, you will find the response models that we will be using. -The `IsConverter()` and `GetPropertyValueType()` methods are inherited from the `PropertyValueConverterBase` class, which is covered in the [Property Value Converters](https://docs.umbraco.com/umbraco-cms/extending/property-editors/property-value-converters) article. +The `IsConverter()` and `GetPropertyValueType()` methods are inherited from the `PropertyValueConverterBase` class, which is covered in the [Property Value Converters](../../extending/property-editors/property-value-converters) article. {% code title="MyCustomPickerValueConverter.cs" lineNumbers="true" %} ```csharp diff --git a/15/umbraco-forms/developer/ajaxforms.md b/15/umbraco-forms/developer/ajaxforms.md index 65ad834a109..9696ec97985 100644 --- a/15/umbraco-forms/developer/ajaxforms.md +++ b/15/umbraco-forms/developer/ajaxforms.md @@ -544,7 +544,7 @@ Examples demonstrating how to handle a file upload and use reCAPTCHA fields are ## Working with the CMS Content Delivery API -The [Content Delivery API](https://docs.umbraco.com/umbraco-cms/v/12.latest/reference/content-delivery-api) provides headless capabilities within Umbraco by allowing you to retrieve content in JSON format. +The [Content Delivery API](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api) provides headless capabilities within Umbraco by allowing you to retrieve content in JSON format. When retrieving content that contains an Umbraco Forms form picker, the output by default will consist of the ID of the selected form: @@ -570,7 +570,7 @@ When retrieving content that contains an Umbraco Forms form picker, the output b } ``` -With [expanded output](https://docs.umbraco.com/umbraco-cms/v/12.latest/reference/content-delivery-api#output-expansion) for the property, the full details of the form will be available. The structure and content of the form representation will be exactly the same as that provided by the Forms API itself. +With [expanded output](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api) for the property, the full details of the form will be available. The structure and content of the form representation will be exactly the same as that provided by the Forms API itself. ```json {