Problems on parking call

I have problem with call parking. I parked call and I can not pick up my parked call:
res_parking.conf
[default]
parkext => 700
parkpos => 701-720
context => parkedcalls
extensions.conf
exten => _XXX,1,Dial(PJSIP/{EXTEN},30,tk&tm) ............................................................. exten => 700,1,Park() exten => _7XX,1,ParkedCall({EXTEN})
exten => _XXX,hint,park:${EXTEN}@parkedcalls

Parking Lot: default

Parking Extension : 700
Parking Context : parkedcalls
Parking Spaces : 701-720
Parking Time : 45 sec
Comeback to Origin : yes
Comeback Context : parkedcallstimeout (comebacktoorigin=yes, not used)
Comeback Dial Time : 30 sec
MusicOnHold Class :
Enabled : yes
Dynamic : no

Parked Calls

Space : 702
Channel : PJSIP/104-00000006
Parker Dial String : PJSIP/102

When I dial 702 it show error :
ERROR[9653][C-00000006]: parking/parking_applications.c:639 parked_call_app_exec: Could not find the requested parking lot

You have {EXTEN} not ${EXTEN}

Thank you!
_7XX,1,ParkedCall(${EXTEN})

I change it but the same error:
ERROR[11881][C-00000004]: parking/parking_applications.c:639 parked_call_app_exec: Could not find the requested parking lot

Give us the output of ‘features show’ and ‘parking show’

features show
Builtin Feature Default Current


Pickup *8 *8
Blind Transfer # #
Attended Transfer
One Touch Monitor
Disconnect Call * *
Park Call #72
One Touch MixMonitor

Dynamic Feature Default Current


(none)

Feature Groups:

(none)

parking show

Parking General Options

Dynamic Parking : no

Parking Lot: default

Parking Extension : 700
Parking Context : parkedcalls
Parking Spaces : 701-710
Parking Time : 45 sec
Comeback to Origin : yes
Comeback Context : parkedcallstimeout (comebacktoorigin=yes, not used)
Comeback Dial Time : 30 sec
MusicOnHold Class :
Enabled : yes
Dynamic : no

You need to use the preformated text button when pasting output from asterisk.

Try exten => _70X,1,ParkedCall(${EXTEN},default)

Please show console output of the next attempt along with a ‘show parkedcalls’ showing the call that is parked before you attempt to pick it up.

the same error

parking show default

Parking Lot: default

Parking Extension : 700
Parking Context : parkedcalls
Parking Spaces : 701-710
Parking Time : 45 sec
Comeback to Origin : yes
Comeback Context : parkedcallstimeout (comebacktoorigin=yes, not used)
Comeback Dial Time : 30 sec
MusicOnHold Class :
Enabled : yes
Dynamic : no

Parked Calls

Space : 705
Channel : PJSIP/101-00000010
Parker Dial String : PJSIP/104

== Setting global variable ‘SIPDOMAIN’ to ‘192.168.0.250’
[Nov 29 19:12:17] ERROR[9661][C-0000000b]: parking/parking_applications.c:639 parked_call_app_exec: Could not find the requested parking lot

Hello,
Do you finde solution? I haven`t found sulotion yet!
thank you

Hello, you need to use the nano /etc/asterisk/extensions.conf

exten=700,1,Park()
exten=701,1,ParkedCall(default,701)
exten=702,1,ParkedCall(default,702)
exten=703,1,ParkedCall(default,703)
exten=704,1,ParkedCall(default,704)

This thread is a zombie and needs a stake in the heart.

However, you should not need to explicitly define the Park() and ParkedCall lines. In this example they are auto generated in parkedcalls. All you need to do is to include that context wherever parking can be accessed.

Also, whilst the latest posting corrects the original error, by using the lot name rather than the context, it introduces a new one, by giving the parameters in the wrong order. In any case, as it is the default, the lot is optional.