-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update this SDK to be inline with current API docs #1
Labels
Comments
I looked around, didn't see anything, so here's a patch. |
Thanks for the report. We're due for some spring cleaning on this SDK's convenience methods. In the meantime, you can call endpoints without direct support via the following convention: sdk.api.POST(`/events/${eventID}`, params).then(response => response.getData());
sdk.api.GET(`/events/${eventID}`).then(response => response.getData());
// etc. Ref:
|
👍 on adding the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For example, there's a call to
POST /spaces/:id/events
for reserving a room, but this SDK appears not to support it.Am I missing something? I'd expect to be able to do:
The text was updated successfully, but these errors were encountered: