OAuth Integrations

Callr currently supports direct OAuth integration with the following providers:

SalesforceGoogle
MicrosoftInfobip

We're actively working on adding more OAuth providers. If you'd like us to prioritize a specific service, reach out to Support.


🧪 Example Request

- action: fetch@v2
  params:
    url: https://<oauth-provider-example.com>/resource?arg=value
    method: GET
    headers:
      Content-Type: application/json
      Authorization: Bearer ${{ integrations.defaults.<provider>.accessToken }}
- action: fetch@v2
  params:
    url: https://<oauth-provider-example.com>
    method: POST
    headers:
      Content-Type: application/json
      Authorization: Bearer ${{ integrations.defaults.<provider>.accessToken }}
    body: <body-expected-by-provider>

Replace <oauth-provider-example.com> with a valid Provider URL. For example, https://graph.microsoft.com/v1.0/me/drive/items/ is the URL to access Microsoft OneDrive Items.

Replace <provider> with either:

  • microsoft
  • google
  • salesforce
  • hubspot

You can find more exemples in Push Data to Your Platform and Fetch Data from Your Platform.


ℹ️

Note

Platforms that use API keys for authentication don't require any special integration. You can use them directly with fetch actions.