Hi all!
We faced with the case when response for node info API call (/api/v2/nodes/n) contains negative user id -3 in creator_user_id or owner_user_id property.
When later we execute user info request at /api/v2/members/-3, it expectedly fails with the error 406 Not Acceptable.
So, our questions are:
- What does negative user id mean?
- How can we get user info for such negative ids? Should we just throw away minus sign and use absolute value?
REST API documentation does not provide any information regarding negative identifiers.
Thank you!