DigiOffice API Services Services

<back to all web services

GetDocumentViewDetails

Requires Authentication
The following routes are available for this service:
GET/api/getdocumentviewdetails
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*


open class GetDocumentViewDetails
{
    open var ViewID:UUID? = null
    open var IncludeExplorers:Boolean? = null
}

open class DocumentView : MobileView()
{
    @DataMember
    open var TranslateKey:String? = null

    @DataMember
    open var SiteMapKey:String? = null
}

@DataContract
open class MobileView
{
    @DataMember
    open var ID:UUID? = null

    @DataMember
    open var Title:String? = null

    @DataMember
    open var ImageUrl:String? = null

    @DataMember
    open var ChildrenCount:Int? = null

    @DataMember
    open var Order:Int? = null

    @DataMember
    open var Explorers:ArrayList<Explorer>? = null

    @DataMember
    open var IsDirectSearch:Boolean? = null
}

open class Explorer
{
    open var ID:UUID? = null
    open var Title:String? = null
    open var Order:Int? = null
}

Kotlin GetDocumentViewDetails 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 /api/getdocumentviewdetails HTTP/1.1 
Host: test-do-services.klokgroep.nl 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"TranslateKey":"String","SiteMapKey":"String","ID":"00000000-0000-0000-0000-000000000000","Title":"String","ImageUrl":"String","ChildrenCount":0,"Order":0,"Explorers":[{"ID":"00000000-0000-0000-0000-000000000000","Title":"String","Order":0}],"IsDirectSearch":false}