I am reaching out to seek assistance regarding an issue I am encountering while integrating PayPal subscriptions. I am getting the auth token via this API request by using client ID and client secret. https://api-m.sandbox.paypal.com/v1/oauth2/token after I am hitting this https://api-m.sandbox.paypal.com/v1/billing/subscriptions endpoint with auth token and plan_id. below error message I am getting in response. { "name": "RESOURCE_NOT_FOUND", "message": "The specified resource does not exist.", "debug_id": "ed107fdb44be8", "details": [ { "issue": "INVALID_RESOURCE_ID", "description": "Requested resource ID was not found." } ], "links": [ { "href": "https://developer.paypal.com/docs/api/v1/billing/subscriptions#RESOURCE_NOT_FOUND", "rel": "information_link", "method": "GET" } ] } I have reviewed the documentation associated with this error, and it appears to be related to an INVALID_RESOURCE_ID issue, indicating that the requested resource ID was not found. I have double-checked my implementation, and I believe I am using the correct resource ID. However, I am still encountering this error. I would appreciate any guidance or insights from the community on how to troubleshoot and resolve this issue.
... View more