<back to all web services

ParentItemMessage

The following routes are available for this service:
GET/RestApi/sitefinity/related-data/child-items
namespace Telerik.Sitefinity.GenericContent.Model

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    type ContentLifecycleStatus =
        | Master = 0
        | Temp = 1
        | Live = 2
        | Deleted = 4
        | PartialTemp = 8

    [<AllowNullLiteral>]
    type ParentItemMessage() = 
        member val ParentItemId:String = null with get,set
        member val ParentItemType:String = null with get,set
        member val ParentProviderName:String = null with get,set
        member val FieldName:String = null with get,set
        member val Status:Nullable<ContentLifecycleStatus> = new Nullable<ContentLifecycleStatus>() with get,set
        member val Filter:String = null with get,set
        member val Order:String = null with get,set
        member val Skip:Int32 = new Int32() with get,set
        member val Take:Int32 = new Int32() with get,set
        member val ChildItemType:String = null with get,set
        member val ChildProviderName:String = null with get,set

F# ParentItemMessage DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /RestApi/sitefinity/related-data/child-items HTTP/1.1 
Host: www.asg.com.au 
Accept: application/json