| GET,OPTIONS | /v1/me/navigation |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
open class GetMyNavigationRequest : IGet
{
}
open class GetMyNavigationResponse
{
open var Items:ArrayList<AppNavItem> = ArrayList<AppNavItem>()
}
open class AppNavItem
{
open var Id:String? = null
open var Title:String? = null
open var Href:String? = null
open var RequiresAll:ArrayList<String> = ArrayList<String>()
open var RequiresAny:ArrayList<String> = ArrayList<String>()
}
Kotlin GetMyNavigationRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/me/navigation HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Items:
[
{
Id: String,
Title: String,
Href: String,
RequiresAll:
[
String
],
RequiresAny:
[
String
]
}
]
}