I have a problem in accessing APIs from our backend services. Since I want to access APIs from our backend services only, I don’t want to sign-in and then authorize, generate token, and then access API (as mentioned in this link https://developer.infusionsoft.com/authentication/#request-permission) and it is not possible to give redirect-url too . Is there any direct process?
I created passphrase and got the encrypted key as described in this link too.
(https://help.infusionsoft.com/userguides/get-started/tips-and-tricks/api-key )
But I don’t know how to use that key with the API request. I tried it as the access_token, but it didn’t work. For an example, let’s say i want to get the product list. Then the URL will be for the GET Request is as follows.
https://api.infusionsoft.com/crm/rest/v1/products/search?active=true&access_token=xxxxxxxxxxxxxxxxxxxx
Please help me to access your APIs. And I’m using C# .net.
Thanks in advance.