Methods#
In this article we explain the i-doit JSON-RPC API in depth. If you want to know what parameters must/can be set for each method and what a typical response looks like, this will be the right resource.
Namespace [idoit]#
This namespace is reserved for common methods.
idoit.search#
idoit.search
Search in i-doit
Request parameters
Key | JSON data typ | Required | Description |
---|---|---|---|
q | String | Yes | Query, for example: "My little server" |
Response
JSON key result contains an array of JSON objects. Each object contains a search result.
Key | JSON data type | Description |
---|---|---|
documentID | String | Identifier |
key | String | Attribute which relates to query |
value | String | Value which relates to query |
type | String | Add-on or core feature |
link | String | Relative URL which directly links to search result |
score | Integer | Scoring (deprecated) |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
idoit.version#
idoit.version
Fetch information about i-doit and the current user
Request parameters
None
Response
JSON key result contains an JSON object with various information about i-doit itself and the current user.
Key | JSON data type | Description |
---|---|---|
login | Array | Information about the user who has performed the request; see below for details |
login.userid | String | Object identifier (as numeric string) |
login.name | String | Object title |
login.mail | String | E-mail address (see category Persons → Master Data) |
login.username | String | User name (see category Persons → Login) |
login.mandator | String | Tenant name |
login.language | String | Language: "en" or "de" |
version | String | Version of installed i-doit |
step | String | Dev, alpha or beta release |
type | String | Release variant: "OPEN" or "PRO" |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
idoit.constants#
idoit.constants
Fetch defined constants from i-doit
Request parameters
None
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
objectTypes | Object | List of object types Keys: object type constants Values: translated object type titles |
categories | Object | List of global and specific categories |
categories.g | Object | List of global categories Keys: category constants Values: translated category titles |
categories.s | Object | List of specific categories Keys: category constants Values: translated category titles |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
idoit.login#
idoit.login
Create new session
Request parameters
None
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
result | Boolean | Should be true |
userid | String | Object identifier of logged-in user (as numeric string) |
name | String | Object title of logged-in user |
String | Attribute E-mail address in category Persons → Master Data | |
username | String | Attribute User name in category Persons → Login |
session-id | String | Generated session identifier |
client-id | String | Tenant identifier (as numeric string) |
client-name | String | Tenant name |
Example
Request
Header:
1 2 |
|
Body:
1 2 3 4 5 6 7 8 9 |
|
Header:
1 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Request
Header:
1 |
|
Body:
1 2 3 4 5 6 7 8 9 |
|
Header:
1 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
Request
Header:
1 |
|
Body:
1 2 3 4 5 6 7 8 9 |
|
Header:
1 |
|
Body:
1 2 3 4 5 6 7 8 |
|
idoit.logout#
idoit.logout
Close current session
Request parameters
None
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
message | String | Should be "Logout successfull" |
result | Boolean | Should be true |
Example
See method idoit.login
Namespace cmdb#
This namespace is related to all CMDB-specific methods like handling objects and categories.
cmdb.object.create#
Create new object with some optional information
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
type | String|Integer | Yes | Object type constant as string, for example: "C__OBJTYPE__SERVER" Alternatively, object type identifier as integer, for example: 5 |
title | String | Yes | Object title, for example: "My little server" |
category | String | No | Attribute Category in category Global |
purpose | String | No | Attribute Purpose in category Global, for example: "In production" |
cmdb_status | String|Integer | No | Attribute CMDB status in category Global by its constant (string), for example: "C__CMDB_STATUS__IN_OPERATION" Alternatively, by its identifier (integer), for example: 6 |
description | String | No | Attribute Description in category Global |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
id | String | Object identifier (as numeric string) |
message | String | Some information |
success | Boolean | Should always be true |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 |
|
Body:
1 2 3 4 5 6 7 8 9 |
|
cmdb.object.read#
cmdb.object.read
Read common information about an object
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
id | Integer | Yes | Object identifier; for example: 42 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
id | String | Object identifier (as numeric string) |
title | String | Object title |
sysid | String | SYSID (see category Global) |
objecttype | String | Object type identifier (as numeric string) |
created | String | Date of creation; format: Y-m-d H:i:s |
updated | String | Date of last update; format: Y-m-d H:i:s Note: This key is optional because not every object has been updated before. |
type_title | String | Translated name of object type |
type_icon | String | Relative URL to object type icon |
status | String | Object status: C__RECORD_STATUS__BIRTH Status-ID = 1 Title = Unfinished C__RECORD_STATUS__NORMAL Status-ID = 2 Title = Normal C__RECORD_STATUS__ARCHIVED Status-ID = 3 Title = Archived C__RECORD_STATUS__DELETED Status-ID = 4 Title = Deleted C__RECORD_STATUS__TEMPLATE Status-ID = 6 Title = Template C__RECORD_STATUS__MASS_CHANGES_TEMPLATE Status-ID = 7 Title = Mass change template |
cmdb_status | String | CMDB status (see category Global; as numeric string) |
cmdb_status_title | String | Translated CMDB status (see category Global) |
image | String | URL to object picture |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
cmdb.object.update#
cmdb.object.update
Change object e.g title of a object
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
id | Integer | Yes | Object identifier, for example: 42 |
title | String | Yes | New object title, for example: "Your little server" |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
message | String | Should be |
success | Boolean | Should be true |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.object.delete#
cmdb.object.delete
Deletes a object
Request paramters
Key | JSON data type | Required | Description |
---|---|---|---|
id | Integer | Yes | Object identifier, for example: 42 |
status | String | Yes | Status constant: "C__RECORD_STATUS__ARCHIVED": Archive object "C__RECORD_STATUS__DELETED": Mark object as deleted "C__RECORD_STATUS__PURGE"*: Purge object from database |
Response
JSON key result contains a JSON object.
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.object.recycle#
cmdb.object.recycle
Recyles a object
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 464 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.object.archive#
cmdb.object.archive
Archives a object
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 464 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.object.purge#
cmdb.object.purge
Purges a object
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 464 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.object.markAsTemplate#
cmdb.object.markAsTemplate
Set the Object condition as a Template
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 465 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.object.markAsMassChangeTemplate#
cmdb.object.markAsMassChangeTemplate
Set the Object condition as a Mass Change Template
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 465 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.objects.read#
cmdb.objects.read
Fetch a list of objects
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
categories | Array | No | Here you can filter by a list or a category, in the form of category constant/s. "categories": ["C__CATG__MY_CUSTOM_CATEGORY"] "categories": ["C__CATG__MY_CUSTOM_CATEGORY", "C__CATG__MY_SECOND_CATEGORY"] |
filter | Array | No | Filter list of objects; see below for a full list of options |
limit | Mixed | No | Maximum amount of objects (as integer), for example, fetch the first thousand of objects: 1000 Combine this limit with an offset (as string), for example, fetch the next thousand of objects: "1000,1000" |
order_by | String | No | Order result set by (see filter for more details what each value means): "isys_obj_type__id", "isys_obj__isys_obj_type__id", "type", "isys_obj__title", "title", "isys_obj_type__title", "type_title", "isys_obj__sysid", "sysid", "isys_cats_person_list__first_name", "first_name", "isys_cats_person_list__last_name", "last_name", "isys_cats_person_list__mail_address", "email", "isys_obj__id", or "id"* |
sort | String | No | Only useful in combination with key order_by; allowed values are either "ASC" (ascending) or "DESC" (descending) |
Filter
Key | JSON data type | Required | Description |
---|---|---|---|
ids | Array | No | List of object identifiers (as integers), for example: [1, 2, 3] |
type | Integer|String | No | Object type identifier (as integer), for example: 5 Alternatively, object type constant (as string), for example: "C__OBJTYPE__SERVER" |
title | String | No | Object title (see attribute Title in category Global), for example: "My little server" |
type_title | String | No | Translated name of object type, for example: "Server" Note: Set a proper language in your request. |
sysid | String | No | SYSID (see category Global), for example: "SRV_101010" |
first_name | String | No | First name of an object of type Persons (see attribute First name in category Persons → Master Data), for example: "John" |
last_name | String | No | Last name of an object of type Persons (see attribute Last name in category Persons → Master Data), for example: "Doe" |
String | No | Primary e-mail address of an object of type Persons, Person groups or Organization (see attribute E-mail address in categories Persons/Person groups/Organization → Master Data), for example: "john.doe@example.com" | |
type_group | String | No | Filters by the object type group e.g. Infrastructure or Other: "C__OBJTYPE_GROUP__INFRASTRUCTURE" |
status | String | No | Filter by status of the objects e.g. Normal or Archived: C__RECORD_STATUS__BIRTH Status ID = 1 Description = Unfinished C__RECORD_STATUS__NORMAL Status ID = 2 Designation = Normal C__RECORD_STATUS__ARCHIVED Status ID = 3 Designation = Archived C__RECORD_STATUS__DELETED Status-ID = 4 Description = Deleted C__RECORD_STATUS__TEMPLATE Status-ID = 6 Description = Template C__RECORD_STATUS__MASS_CHANGES_TEMPLATE Status ID = 7 Description = Template for mass changes |
You can use any combination of filters. Filters are logically associated with AND. A valid combination could be: "Give me all servers which have the same hostname."
Response
JSON key result contains an array of JSON objects. Each object contains a bunch of information about an i-doit object.
Key | JSON data type | Description |
---|---|---|
id | String | Object identifier (as numeric string) |
title | String | Object title |
sysid | String | SYSID (see category Global) |
type | String | Object type identifier (as numeric string) |
created | String | Date of creation; format: Y-m-d H:i:s |
updated | String | Date of last update; format: Y-m-d H:i:s Note: This key is optional because not every object has been updated before. |
type_title | String | Translated name of object type |
type_group_title | String | Translated name of object type group |
status | String | Object status: C__RECORD_STATUS__BIRTH Status-ID = 1 Title = Unfinished C__RECORD_STATUS__NORMAL Status-ID = 2 Title = *Normal C__RECORD_STATUS__ARCHIVED Status-ID = 3 Title = Archived * C__RECORD_STATUS__DELETED Status-ID = 4 Title = Deleted * C__RECORD_STATUS__TEMPLATE Status-ID = 6 Title = Template * C__RECORD_STATUS__MASS_CHANGES_TEMPLATE Status-ID = 7 Title = Mass change template** |
cmdb_status | String | CMDB status (see category Global; as numeric string) |
cmdb_status_title | String | Translated CMDB status (see category Global) |
image | String | URL to object picture |
categories | Mixed | Optional attributes with values depending on the requested category |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
cmdb.category.save#
cmdb.category.save
Create or Update category entry of an object.
It works for multi-value categories and single-value category .
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 456 |
category | String | Yes | Category constant, for example: "C__CATG__ACCESS" |
data | Object | Yes | { "title":”Name of the access”, "description": ”description of the access" } |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
entry | Integer | Entry identifier, for example: 35 |
Example
Create Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Body:
1 2 3 4 5 6 7 8 9 |
|
or update Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
Body:
1 2 3 4 5 6 7 8 9 |
|
cmdb.category.create#
cmdb.category.create
Create a new category entry
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
objID | Integer | Yes | Object identifier, for example: 42 |
category | String | Yes | Category constant, for example: C__CATG__MODEL |
data | Object | Yes | Attributes with their values, for example: { "manufacturer": "Name of manufacturer", "title": "Name of model" } |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
id | String | Entry identifier (as numeric string) |
message | String | Some information |
success | Boolean | Should always be true |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Body:
1 2 3 4 5 6 7 8 9 |
|
cmdb.category.read#
cmdb.category.read
Read one or more category entries for an object
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
objID | Integer | Yes | Object identifier, for example: 42 |
category | String | Yes | Category constant, for example: "C__CATG__MODEL" |
Response
JSON key result contains an array of JSON objects. Each object contains all available attributes for the requested category. Note: Even if it is a single-value category or a multi-value category with only 1 entry, the JSON key result contains always an array of JSON objects.
Key | JSON data type | Description |
---|---|---|
id | String | Entry identifier (as numeric string) |
objID | String | Object identifier (as numeric string) |
… | Mixed | Optional attributes with values depending on requested category |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
cmdb.category.update#
cmdb.category.update
Update category entry of an object
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
objID | Integer | Yes | Object identifier, for example: 42 |
category | String | Yes | Category constant, for example: "C__CATG__MODEL" |
data | Object | Yes | Attributes which will be updated |
data.category_id | Integer | No | Entry identifier (only required for multi-value categories) |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Should be "Category entry successfully saved" |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.category.delete#
cmdb.category.delete
Archive a category entry for an object, mark it as deleted or purge it from database
Limitations
- This only works with multi-value categories at the moment.
- You can only archive category entries which have a normal status.
- You can only mark category entries as deleted which are archived.
- You can only purge category entries from the database which are marked as deleted.
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
objID | Integer | Yes | Object identifier, for example: 42 |
category | String | Yes | Category constant, for example: "C__CATG__IP" |
cateID | Integer | Yes | Entry identifier, for example: 3 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.category.quickpurge#
cmdb.category.quickpurge
If Quickpurge is enabled, purge a category entry of an object directly from the database.
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
objID | Integer | Yes | Object identifier, for example: 42 |
category | String | Yes | Category constant, for example: "C__CATG__IP" |
cateID | Integer | Yes | Entry identifier, for example: 3 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.category.purge#
cmdb.category.purge
Purge a category entry of an object.It works for multi-value categories and single-value category .
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 456 |
category | String | Yes | Category constant, for example: "C__CATG__ACCESS" |
entry | Integer | Yes | Entry identifier, for example: 33 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Body:
1 2 3 4 5 6 7 8 |
|
Or Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.category.recycle#
cmdb.category.recycle
Limitations
- This only works with multi-value categories at the moment.
- You can recycle category entries which have archived or deleted status.
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 456 |
category | String | Yes | Category constant, for example: "C__CATG__ACCESS" |
entry | Integer | Yes | Entry identifier, for example: 32 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.category.archive#
cmdb.category.archive
Limitations
- This only works with multi-value categories at the moment.
- You can only archive category entries which have a normal status.
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
object | Integer | Yes | Object identifier, for example: 456 |
category | String | Yes | Category constant, for example: "C__CATG__ACCESS" |
entry | Integer | Yes | Entry identifier, for example: 32 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
message | String | Some information |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.dialog.read#
cmdb.dialog.read
Read dialog informations.
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
category | String | Yes | Category constant, for example: "C__CATG__CPU" |
property | String | Attribute in the category, for example: “manufacturer” |
Response
JSON key result contains an array of JSON objects.
Key | JSON data type | Description |
---|---|---|
id | Integer | Identifier |
const | String | Constant of Dialog Attribute |
title | String | Title of the Attribute |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
cmdb.dialog.create#
cmdb.dialog.create
Created Dialogs.
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
category | String | Yes | Category constant, for example: "C__CATG__CPU" |
property | String | Yes | Attribute in the category, for example: “manufacturer” |
value | String | Yes | Value of the Attribute |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
entry_id | Integer | Entry Identifier, for example: 3 |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.dialog.update#
cmdb.dialog.update
Update a dialog entry.
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
category | String | Yes | Category constant, for example: "C__CATG__CPU" |
property | String | Yes | Attribute in the category, for example: “manufacturer” |
value | String | Yes | Value of the Attribute |
entry_id | String | Yes | Entry Identifier, for example: 3 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
entry_id | Integer/String | Entry Identifier, for example: 3 |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.dialog.delete#
cmdb.dialog.delete
Deletes dialogs.
Request parameters
Key | JSON data type | Required | Description |
---|---|---|---|
category | String | Yes | Category constant, for example: "C__CATG__CPU" |
property | String | Yes | Attribute in the category, for example: “manufacturer” |
entry_id | String | Yes | Entry Identifier, for example: 3 |
Response
JSON key result contains a JSON object.
Key | JSON data type | Description |
---|---|---|
success | Boolean | Should be true |
entry_id | Integer/String | Entry Identifier, for example: 3 |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Body:
1 2 3 4 5 6 7 8 |
|
cmdb.reports.read#
cmdb.reports.read
Display report.
Request parameters
None
Response
JSON key result contains an array of JSON objects.
Key | JSON data type | Description |
---|---|---|
id | String | Identifier |
category | String | Attribute Category in category Global |
title | String | Title of the report |
description | String | Report Description |
created | String | When was is it created |
Example
Request
Body:
1 2 3 4 5 6 7 8 9 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
Or you can also use the parameter “id” in your request to get the corresponding report Request parameters
Key | JSON data type | Description |
---|---|---|
id | String | Identifier |
Response
JSON key result contains an array of JSON objects..
Example
Request
Body:
1 2 3 4 5 6 7 8 9 10 |
|
Body:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|