Alright, I see the response {"status": false, "data": "Invalid signature"}
which means your request payload contains a nonce, which has been deprecated and replaced with a signature as we mentioned in the Troubleshoot the Tracker previously.
For more information on this change, please refer to the following resources:
To generate the correct signature, follow the instructions provided in the documents linked above. Alternatively, you might prefer to clear your cache or disable the signature verification.
You can disable the signature by adding the following code to your functions.php
file:
add_filter('request_signature_enabled', 'disable_request_signature');
function disable_request_signature($enabled) {
return false; // Disable signature verification
}
Best.