Hoe to pass path params using Route transform advanced plugin?

Hi,
I have below spec and want tp pass the path param job id in the route transform plugin. How can this be done ? The below config doesn’t work as it sends as it to upstream /job/{job_id}

/v1/payslip/job/{job_id}:
get:
tags:
- job
summary: Finds Jobs by ID
operationId: findJobsById
parameters:
- name: job_id
in: path
description: Status values that need to be considered for filter
explode: true
required: true
schema:
type: string
description: UUID of the Job
example: 38ce1872-30dc-11ec-a351-acde48001122
x-kong-plugin-route-transformer-advanced:
config:
path: ‘/job/{job_id}’