listTransformers

abstract suspend fun listTransformers(input: ListTransformersRequest = ListTransformersRequest { }): ListTransformersResponse

Lists the available transformers. A transformer describes how to process the incoming EDI documents and extract the necessary information to the output file.

Samples


fun main() { 
   //sampleStart 
   // Sample ListTransformers call
val resp = b2BiClient.listTransformers {
    maxResults = 50
    nextToken = "foo"
} 
   //sampleEnd
}