| 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 .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
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: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"Items":[{"Id":"String","Title":"String","Href":"String","RequiresAll":["String"],"RequiresAny":["String"]}]}