DESCRIPTION

This endpoint returns a report associated with the given report ID. 

URL STRUCTURE

https://[hostname]/report/{reportId}

METHOD

GET

HEADERS

**Authorization:**    string Base64       [email]:[key]

ARGUMENTS

NameTypeDescription
reportIdintReport ID to return


PARAMETERS

NameTypeDescription
show_idsbool (1 or 0)Include entity IDs as a column in the report


RETURNS

Returns the report.

{
  "columns": [
      "IRN",
      " Country Code",
      " Status",
      " Category",
      " Long title"
  ],
  "data": [
      {
          "mattercode": "P000017USAL",
          "country": "AL",
          "description": "Granted (active)",
          "mattercategory": "Property (Invention)",
          "longtitle": "PCT Thing"
      },
      {
          "mattercode": "P000017USAT",
          "country": "AT",
          "description": "Granted (active)",
          "mattercategory": "Property (Invention)",
          "longtitle": "PCT Thing"
      },
      {
          "mattercode": "P000017USBA",
          "country": "BA",
          "description": "Granted (active)",
          "mattercategory": "Property (Invention)",
          "longtitle": "PCT Thing"
      }
  ]
}