So a DELETE gets sent to the callback url with some data. I need to know, is this data in form of GET variables or POST? I’m having the issue right now where pipedrive doesn’t uninstall when I uninstall from the app marketplace manager in my PD account.
I think I’m getting something wrong here. Is user_id, company_id and client_id get variables or post variables? Also, does the delete follow redirects?
Properties like user_id/company_id/client_id are sent in the DELETE request body. As it is a DELETE request, there are no GET or POST variables.
Depending on programming language you might need to search how to “read body from delete request” or something similar to this
If you need to test it you can temporarily change the callback url to an endpoint that allows you to catch the request. For example you could use something like https://requestbin.com/
You will see a response with the parameters described in the link David give you