Source Specs
List source specs
Source Specs
List source specs
List all source specs
GET
/
v2
/
sourcespecs
curl --request GET \
--url https://api.portable.io/v2/sourcespecs \
--header 'Authorization: Bearer <token>'
{
"data": {
"0": {
"name": "google_calendar",
"displayName": "Google Calendar",
"website": "https://calendar.google.com",
"tagLine": "Calendar App",
"lifecycle": "STABLE",
"authenticationStrategy": "AUTH_CODE"
},
"1": {
"name": "freshsales",
"displayName": "Freshsales",
"website": "https://www.freshworks.com",
"tagLine": "Sales CRM",
"lifecycle": "STABLE",
"authenticationStrategy": "TOKEN"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
OK
curl --request GET \
--url https://api.portable.io/v2/sourcespecs \
--header 'Authorization: Bearer <token>'
{
"data": {
"0": {
"name": "google_calendar",
"displayName": "Google Calendar",
"website": "https://calendar.google.com",
"tagLine": "Calendar App",
"lifecycle": "STABLE",
"authenticationStrategy": "AUTH_CODE"
},
"1": {
"name": "freshsales",
"displayName": "Freshsales",
"website": "https://www.freshworks.com",
"tagLine": "Sales CRM",
"lifecycle": "STABLE",
"authenticationStrategy": "TOKEN"
}
}
}