Skip to content
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

TagsLogic endpoint missing request parameters #587

Closed
brdavis3 opened this issue Sep 2, 2022 · 1 comment
Closed

TagsLogic endpoint missing request parameters #587

brdavis3 opened this issue Sep 2, 2022 · 1 comment

Comments

@brdavis3
Copy link

brdavis3 commented Sep 2, 2022

Hello,
I'm trying to get all tags for a list by using Tags.GetAllAsync() but only the first 10 are returned. I'm passing in a TagsRequest with an offset and limit, but the offset is ignored because TagsLogic.GetResponseAsync() is not serializing the TagsRequest object.

var response = await client.GetAsync($"{listId}/tag-search").ConfigureAwait(false);

should be:

var response = await client.GetAsync($"{listId}/tag-search{request.ToQueryString()}").ConfigureAwait(false);

var response = await client.GetAsync($"{listId}/tag-search").ConfigureAwait(false);

@github-actions
Copy link

github-actions bot commented Nov 5, 2022

Stale issue message

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant