Cannot find any route matching when run once

Hi, need some help for error “Cannot find any route matching in Run”

Creating an APP for my Twitetr tweet screenshot product so that other users can also use it. I set

// Default request configuration in basic url

“BaseUrl” : “https://api.twittershots.com”,

Then set url in Moules with url :“/api/v1/screenshot/{{parameters.tweetId}}”, // Relative to base URL.

However, after installing this app, clicking run once will keep reporting errors and the url of this api cannot be found, I’m quite sure this API url exists and correctly.

my API page : Twitter Screenshot API Docs - TwitterShots API

The Action:

The Basic url setting:

Hello,

Have you properly configured tweetId in mappable parameters tab?
You are providing /api/v1/screenshot/as url- so if tweetId is not configured properly module will call https://api.twittershots.com/api/v1/screenshot/ instead of https://api.twittershots.com/api/v1/screenshot/123456789 and it is quite possible you will get 4xx error.