We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 96752fa + 18e7f46 commit 974098aCopy full SHA for 974098a
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixed
11
+
12
+- `Forms.getForm()` using legacy endpoint.
13
14
## [11.0.0] - 2025-03-11
15
16
### Added
src/classes/Forms.ts
@@ -875,7 +875,7 @@ export default class Forms extends OneBlinkAPI {
875
return Promise.reject(new TypeError('Must supply "formId" as a number'))
876
}
877
878
- return super.searchRequest(`/forms/${formId}`, {
+ return super.searchRequest(`/v2/forms/${formId}`, {
879
injectForms: injectForms || false,
880
})
881
0 commit comments