You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working with a 3rd party REST api that has "get" as a rest endpoint: "/api/v1/groups/get/$identifier". Doesn't seem like I can do api.groups.get(identifier).get() as it probably translates the first get as call, not the rest endpoint.
Traceback (most recent call last):
self.api.group.get(identifier).get()
TypeError: get() takes 1 positional argument but 2 were given
The text was updated successfully, but these errors were encountered:
I'm working with a 3rd party REST api that has "get" as a rest endpoint: "/api/v1/groups/get/$identifier". Doesn't seem like I can do api.groups.get(identifier).get() as it probably translates the first get as call, not the rest endpoint.
The text was updated successfully, but these errors were encountered: