I’m working on integrating Property Finder to get leads using HTTP request rules, but I’m having trouble with the authentication process. According to the integration documentation
API Key and API Secret
In Basic HTTP authentication, the request should include a header field in the following format: Authorization: Basic {credentials}
, where {credentials}
is the Base64 encoding of the API key
and API secret
, joined by a colon (:
).
Once I have the API credentials, the next step is to request an access token. Here’s the endpoint for token generation:
POST https://auth.propertyfinder.com/auth/oauth/v1/token
Authorization: Basic {BASE64_VALUE}
{
"scope": "openid",
"grant_type": "client_credentials"
}
Could anyone guide me on how to implement this authentication and token request in Make.com? Any help would be much appreciated!