Is there a way to move cards to different lists by making a request on their name?

I have a Postman collection for Trello which can move cards by doing a POST request.

It looks like this:

https://api.trello.com/1/cards/{{CardId}}?idList={{WorkListID}}&key={{APIKEY}}&token={{APITOKEN}}

Is it possible to use the card name not ID to do this request?

Thanks for your answers.

Nope. You must refer to cards by their unique IDs

Without a unique ID, if you had two or more cards with the exact same name, how would the REST API know which one you were referring to?