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
Name | Type | Description |
---|---|---|
reportId | int | Report ID to return |
PARAMETERS
Name | Type | Description |
---|---|---|
show_ids | bool (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"
}
]
}