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
Thanks for creating such a convenient API. I'm using the PtabDecision function to get the appeal data using code: PtabDecision.objects.filter(proceeding_type_category = "appeal"). However, it returns limited data fields compared to what I can get using the official PTAB API (see the screenshot). The PtabDecision function does return more records than the official API though (which retrieves less than 500 records). Any idea on how to access more detailed data fields when using the PtabDecision function? Thanks for any help!
The text was updated successfully, but these errors were encountered:
You are correct that the PtabDecision model doesn't model all those parameters. In my personal use of the PTAB API, I usually use the proceeding, rather than the decision endpoint.
If you want, I'm happy to approve a PR to add those fields to the PTAB model. You just need to modify this file, specifically adding those fields to the PtabDecision object.
Or, you can traverse the decision back to the proceeding, and get the application number, just do this:
Hello Team,
Thanks for creating such a convenient API. I'm using the
PtabDecision
function to get the appeal data using code: PtabDecision.objects.filter(proceeding_type_category = "appeal"). However, it returns limited data fields compared to what I can get using the official PTAB API (see the screenshot). ThePtabDecision
function does return more records than the official API though (which retrieves less than 500 records). Any idea on how to access more detailed data fields when using thePtabDecision
function? Thanks for any help!The text was updated successfully, but these errors were encountered: