Api endpoint for updating word status

I want to be able to export my lingqs to anki to study the words, but I want to be able to update the status of the word in lingq to known once it reaches a certain threshold in anki.

I don’t see any API endpoint in the documentation to update individual lingqs status (1, 2, 3, 4, 5). Is there an undocumented endpoint, or is there any chance of this being implemented?

https://www.lingq.com/api/v3/zh/cards/123/

Here is an example using curl (will set the word to known):
curl --location --request PATCH ‘https://www.lingq.com/api/v3/zh/cards/123/
–header ‘Authorization: Token 321’
–header ‘Content-Type: application/json’
–data-raw ‘{
“status”: “1”
}’