The structure of the “providers” object is described below
{
"providers": [
{
"value": "",
"reference": "",
"id": 0
}
]
}
EXAMPLE: Supplier relationship in Aranda CMDB / ServiceNow CMDB
To create the list of suppliers, follow the instructions below:
- Get the IDs of the Aranda CMDB providers.
- Get sys_id or value from ServiceNow providers.
- Assign the following supplier equivalence:
Suppliers in ServiceNow | Suppliers in Aranda | Supplier ID Aranda | ServiceNow Provider Sys_id |
---|---|---|---|
Supplier 1 | Supplier 1 | 1 | sys_id_item1 |
Supplier 2 | Supplier 2 | 13 | sys_id_item2 |
- Type the Supplier ID Aranda On Property “id” and the ServiceNow Provider Sys_id of its equivalent taken from the CMDB de ServiceNow On Property value
{
"providers": [
{
"id": 1,
"value": "sys_id_item1"
},
{
"id": 13,
"value": "sys_id_item2"
}
]
}