after sending callout for login i get an api_key "POST https://pi.pardot.com/api/login/version/4 *email=&password=&user_key=" *setting them as parameters with urlencode
getting the:
but when sending a callout to create a list or any other operation i receive "POST https://pi.pardot.com/api/List/version/4/do/create *api_key=&user_key=" *setting them as parameters with urlencode
error 49 on "access denied"
Are there any configurations required to enable api callout to my account or to my user at pardot?
You're getting this error because sending requests with authorization in the query parameters is being deprecated.
You must now provide the parameters in an authorization header
Authorization: Pardot api_key=<your_api_key>, user_key=<your_user_key>