API Selector
Search for Core Functions or APIs from your list or from the API library
CORE FUNCTIONS
MY APIs
API LIBRARY
Implement Pathfix In Any Application In Just 5 Minutes
A few lines of code and you can enable user authorization, data access and sync to any app, in any language.
POST /oauth/method/googlecalendar/call?
user_id=AcmeSaaS_end_user_id
&public_key=733AC521-199E-496C-8250-FFCAD67355AB
&private_key=E7804D26-0625-428F-8550-CDF073D3CF61 HTTP/1.1
Host: labs.pathfix.com
Content-Type: application/json
{
"url": "url_to_googlecalendar_API",
"method": "method_to_use_with_this_call",
"payload": {
payload_as_requested_by_googlecalendar
},
"headers": {
header_if_requested_by_googlecalendar
}
}
var dataClientId="733AC521-199E-496C-8250-FFCAD67355AB";
var appUserId="AcmeSaaS_end_user_id"
var settings = {
"url": "https://labs.pathfix.com/oauth/method/googlecalendar/call?
user_id=appUserId&public_key=dataClientId",
"method": "POST",
"headers": {
"Content-Type": "application/json"
},
"data": JSON.stringify({
"url":"url_to_googlecalendar_API",
"method":"method_to_use_with_this_call",
"payload":{
payload_as_requested_by_googlecalendar
},
"headers":{
headers_if_requested_by_googlecalendar
}
})
};
$.ajax(settings).done(function (response) {
console.log(response);
});
import requests
url = "https://labs.pathfix.com/oauth/method/googlecalendar/call?user_id=AcmeSaaS_end_user_id
&public_key=733AC521-199E-496C-8250-
FFCAD67355AB
&private_key=E7804D26-0625-428F-8550-
CDF073D3CF61"
payload = "{\"url\": \"url_to_googlecalendar_API",\"method\": \"method_to_use_with_this_call\",\"payload\": {payload_as_requested_by_googlecalendar},\"headers\": {headers_if_requested_by_googlecalendar}}"
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data = payload)
print(response.text.encode('utf8'))
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://labs.pathfix.com/oauth/method/googlecalendar/call?user_id=AcmeSaaS_end_user_id
&public_key=733AC521-199E-496C-8250-FFCAD67355AB
&private_key=E7804D26-0625-428F-8550-CDF073D3CF61',
'headers': {
'Content-Type': 'application/json'
},
data: JSON.stringify({
"url":"url_to_googlecalendar_API",
"method":"method_to_use_with_this_call",
"payload":{
payload_as_requested_by_googlecalendar
},
"headers":{
headers_if_requested_by_googlecalendar
}
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
string dataClientId = "733AC521-199E-496C-8250-FFCAD67355AB";
string appUserId = "AcmeSaaS_end_user_id";
string privateKey = "E7804D26-0625-428F-8550-CDF073D3CF61"
var client = new RestClient($"https://labs.pathfix.com/oauth/method/googlecalendar/call?user_id={appUserId}&&public_key={dataClientId}&private_key={privateKey}*");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\"url\": \"url_to_googlecalendar_API",\"method\": \"method_to_use_with_this_call\",\"payload\": {payload_as_requested_by_googlecalendar},\"headers\": {headers_if_requested_by_googlecalendar}}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
Supports Any Technology Stack
API Selector
Search for Core Functions or APIs from your list or from the API library
CORE FUNCTIONS
MY APIs
API LIBRARY
INPUT
{
"url": "https://api.twitch.tv/helix/users?login=REPLACE WITH LOGIN ID",
"method": "GET",
"payload": {}
OUTPUT
{
"body": {
"output": [
"email1",
"email2"
]
}
}
API Selector
Search for Core Functions or APIs from your list or from the API library
CORE FUNCTIONS
MY APIs
API LIBRARY
INPUT
{
"url": "https://api.twitch.tv/helix/users?login=REPLACE WITH LOGIN ID",
"method": "GET",
"payload": {}
OUTPUT
{
"body": {
"output": [
"email1",
"email2"
]
}
}
In order to discuss the general function of the logo, we must firstly identify and define the environment where this will have.
Windows 10+
For Windows 10 and above
Mac OSX Mojave
For Mac OSX 10.12 and above
Integration type
Audience
Usecase
Implementation Type
Tool type
Flexible
Account required to access integration
Providers support
Functionality
Provider categories
Pathfix
Zapier