Update an OAuth2 connection
Headers
-
Content-Type
string -
Accept
string
Path parameters
-
oauthConnection_uuid
string Required
PUT
/api/v1/oauth/connections/{oauthConnection_uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/oauth/connections/oauthConnection_uuid' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"label":"My Fundment Account 1"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"label": "My Fundment Account 1"
}
Response examples (200)
{
"uuid": "419ccced-8ce6-43f6-8c52-29e4c7e1fea7",
"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-04-02T13:27:59+01:00",
"updated_at": "2025-04-02T13:27:59+01:00",
"access_token_expires_at": "2025-04-02T16:27:59.247290Z",
"refresh_token_expires_at": "2026-04-02T12:27:59.247325Z",
"refresh_authorization_url": "https://plannr.valet/oauth/fundment/authorize/b1d41e5f-3959-47db-b2ed-10092d0fc691"
}