sendMessageToTso

@PUT(value = "/zosmf/tsoApp/tso/{servletKey}")
abstract fun sendMessageToTso(@Header(value = "Authorization") authorizationToken: String, @Header(value = "Content-type") contentType: ContentType = ContentType.APP_JSON, @Body body: TsoData, @Path(value = "servletKey") servletKey: String, @Query(value = "readReply") readReply: Boolean? = null): Call<TsoResponse>

An API function to send a message to TSO address space

Return

a wrapped instance of TsoResponse

Parameters

authorizationToken

is a base 64 encoding representation of userid:password

contentType

content type of the request

body

wrapped instance of TsoData class

servletKey

unique identifier for the servlet entry

readReply

is an optional parameter that indicates whether the service should send the message and immediately check for a response (default) or just send the message.