Hi @Dudi Edri
As of now we don't have option to get drive items directly from call record id.
You can use chats messages Graph API to get the teams recording.
Using this Graph API endpoint, you can get Teams meeting Record link in response. You can use filter by topic of meeting as shown below:
GET https://graph.microsoft.com/v1.0/chats?$filter=topic eq 'Testing'
Use the above id from response and use in below Graph API.
GET /chats/{chat-id}/messages
Now in response you will get call Id which you can search, further to download this teams meeting recording you can refer to this similar post: Downloading recording
Please follow below documentation for more information.
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote. If you have any further questions about this answer, please click Comment.