getQApp

abstract suspend fun getQApp(input: GetQAppRequest): GetQAppResponse

Retrieves the full details of an Q App, including its definition specifying the cards and flow.

Samples


fun main() { 
   //sampleStart 
   // A basic application with 1 text input card and 1 output card
val resp = qAppsClient.getQApp {
    instanceId = "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f"
    appId = "3d110749-efc3-427c-87e8-15e966e5c168"
} 
   //sampleEnd
}