Overview
The Proxy API is an API gateway that allows you to make API calls to third-party service providers (Salesforce, HubSpot, Shopify, Gong, etc.) through Strata’s infrastructure. It provides the following benefits:- Zero OAuth complexity: The proxy handles credential injection and automatic token refresh.
- A unified interface for all service provider APIs: Single endpoint pattern for accessing multiple service providers.
Making Proxy API requests
For detailed API documentation, see the Proxy API Reference.
- Start with the Strata Proxy API base URL:
https://proxy.connectstrata.com/proxy - Append the service provider’s ID:
/<service_provider_id> - Append the API path to call on the service provider’s API:
/<api_path> - Add a Bearer
Authorizationheader with a signed user JWT token. See Authorization for more details on how to generate the token. - Add a
Content-Typeheader for the media type of the request body - (Optional) Add additional headers
- (Optional) Add a request body
- (Optional) Add query parameters
- Make the request with the HTTP method you want to invoke on the service provider’s API