getTransformerJob
inline suspend fun B2BiClient.getTransformerJob(crossinline block: GetTransformerJobRequest.Builder.() -> Unit): GetTransformerJobResponse
Returns the details of the transformer run, based on the Transformer job ID.
If 30 days have elapsed since your transformer job was started, the system deletes it. So, if you run GetTransformerJob
and supply a transformerId
and transformerJobId
for a job that was started more than 30 days previously, you receive a 404 response.
Samples
fun main() {
//sampleStart
// Sample GetTransformerJob call
val resp = b2BiClient.getTransformerJob {
transformerId = "tr-974c129999f84d8c9"
transformerJobId = "tj-vpYxfV7yQOqjMSYllEslLw"
}
//sampleEnd
}