Discussions

Ask a Question
Back to All

Wrong datatype for offset and limit when get_company-attendances called with limit and offset

Calling get_company-attendances with a limit and offset parameter will return the field offset and limit as string. But the type must be an integer.

Calling it without those parameters, the types are correct:

"offset": 0,
"limit": 200

When calling with a limit, the types are wrong (string instead of int):

"offset": 0,
"limit": "10"

This is a problem when using serde to derserialize the response. Where can I create a bug report for this?