This repository was archived by the owner on Jan 9, 2025. It is now read-only.
docs(api): Add missing update users limits endpoint#103
Merged
Conversation
drobnikj
approved these changes
Oct 22, 2024
Member
There was a problem hiding this comment.
👏
Sadly this endpoint is missing on several places:
- missing in JS client https://docs.apify.com/api/client/js/reference/class/UserClient
- missing in Python client https://docs.apify.com/api/client/python/reference/class/UserClient
- Missing in console API docs

Can you look and fix or create issue to fix?
Member
Author
The JS client is ready here: apify/apify-client-js#595 |
vdusek
pushed a commit
to apify/apify-client-python
that referenced
this pull request
Oct 24, 2024
Resolves apify/apify-client-js#329 - add `update_limits` function to `UserClient`, which does `PUT: /v2/users/:userId/limits` Api docs PR here: apify/openapi#103 Client JS PR here: apify/apify-client-js#595 Console api docs PR here: apify/apify-core#18038 Endpoint is already implemented, only api docs and clients were missing
mfori
added a commit
to apify/apify-client-js
that referenced
this pull request
Oct 24, 2024
Resolves #329 - add `updateLimits` function to `UserClient`, which does `PUT: /v2/users/:userId/limits` Api docs PR here: apify/openapi#103 Endpoint is already implemented, only api docs and client was missing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Add
PUT: /v2/users/me/limitsto docs (ep already exists in api, but was not documented yet.)Resolves: apify/apify-client-js#329