List all OAuth2 connections

GET /api/v1/oauth/connections

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]

      Additional properties are allowed.

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": "e45dbd63-a906-417a-a6f9-951d9252d90e",
      "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": "2025-01-17T11:18:33+00:00",
      "updated_at": "2025-01-17T11:18:33+00:00",
      "access_token_expires_at": "2025-01-17T15:18:33.538585Z",
      "refresh_token_expires_at": "2026-01-17T11:18:33.538635Z",
      "refresh_authorization_url": "https://plannr.valet/oauth/fundment/authorize/e4f42f90-c519-4396-882f-c4efa69e0ad6"
    }
  ]
}