List all OAuth2 connections

GET /api/v1/oauth/connections

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
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": "88b40cc9-8755-4430-bc0c-07db3c7dc245",
      "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-10-16T11:10:17+01:00",
      "updated_at": "2024-10-16T11:10:17+01:00",
      "access_token_expires_at": "2024-10-16T14:10:17.915690Z",
      "refresh_token_expires_at": "2025-10-16T10:10:17.915761Z",
      "refresh_authorization_url": "https://plannr.valet/oauth/fundment/authorize/57282074-c7e5-4fe7-b25e-159ca4d84597"
    }
  ]
}