Hi, I am creating a custom zapier integration. Authentication is Oauth 2.0 but grant_type = client_credentials.
Article attached suggested I should use Session Auth in my case which is what I am doing.
ISSUE: My main Auth url is working fine. It returns a status code 200. I want to use the response returned, specifically access_token field from auth url response in the HTTP header of my Test API call. How can I use response from Auth url in Test API url?
HTTP Header should be like this: Authorization: Bearer your-access_token-goes-here
What I did: Authorization: Bearer {{bundle.authData.sessionkey}}