Skip to content

Process Relationships

Link vendors and assets to a process (ROPA), or remove those links.


POST /external/smart-inventory/process/{ropa}/vendor/{vendor}/link

No request body. Both {ropa} and {vendor} are record uniqueId values.

Response

204 No Content on success.


DELETE /external/smart-inventory/process/{ropa}/vendor/{vendor}/unlink

Response

204 No Content on success.


POST /external/smart-inventory/process/{ropa}/asset/{asset}/link

Response

204 No Content on success.


DELETE /external/smart-inventory/process/{ropa}/asset/{asset}/unlink

Response

204 No Content on success.


Example

# Link vendor Insurely AB to a process
curl -X POST https://api.trustview.eu/external/smart-inventory/process/6a054b8b9ae1a/vendor/6a2ab13673183/link \
  -H "X-API-Key: tvw_sk_live_your_key_here"

# Unlink
curl -X DELETE https://api.trustview.eu/external/smart-inventory/process/6a054b8b9ae1a/vendor/6a2ab13673183/unlink \
  -H "X-API-Key: tvw_sk_live_your_key_here"

Use GET /external/smart-inventory/process/{ropa}/item to verify linked vendors and assets in the response.