List all OAuth2 connections
Headers
-
Content-Type string
-
Accept string
GET /api/v1/oauth/connections
curl \
-X GET https://api.plannrcrm.com/api/v1/oauth/connections \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response examples (200)
{
"data": [
{
"uuid": "4e975e20-19b7-45c4-b512-7aa69efe0967",
"label": "My Fundment Account 1",
"provider": {
"name": "fundment",
"label": "Fundment",
"logo_url": "https://api.plannrcrm.com/imgs/fundment-banner.png",
"authorization_url": "https://plannr.valet/oauth/fundment/authorize"
},
"created_at": "2024-11-20T13:24:05+00:00",
"updated_at": "2024-11-20T13:24:05+00:00",
"access_token_expires_at": "2024-11-20T17:24:05.034092Z",
"refresh_token_expires_at": "2025-11-20T13:24:05.034161Z",
"refresh_authorization_url": "https://plannr.valet/oauth/fundment/authorize/665aba3a-903c-4f9b-b594-a480e997bf72"
}
]
}