OP
we also looking more confirmation on below points @chighsmith
The key section says: date-based versioning changes the API resource path, but it does not change authentication or OAuth scopes.
Old CRM call: /crm/v3/objects/contacts
Date-based CRM call: /crm/objects/2026-03/contacts
OAuth stays the same:authorize user: https://app.hubspot.com/oauth/authorize
get/refresh tokens: https://api.hubapi.com/oauth/v3/token
Use the returned access token in both cases:
Authorization: Bearer <access_token>
Managing OAuth remains the same:
Send the user to the authorize URL.
HubSpot redirects back with an authorization code.
Exchange the code at /oauth/v3/token.
Store the access and refresh tokens securely.
Refresh the access token with the same /oauth/v3/token endpoint when it expires.
Use the access token to call either v3 or date-based CRM APIs.
The only related change is scopes: the date-based endpoint still needs the appropriate existing CRM scope, such as crm.objects.contacts.read or crm.objects.contacts.write.
HubSpot’s OAuth reference is here: Manage OAuth access tokens using the v3 APIs.
please confirm does above information is latest and correct. there is no change in oauth related api for date based versioning.