Skip to content About The people and vision powering Probo Blog The latest news from Probo Stories Hear from our customers Changelog Latest product updates Docs Documentation for Probo GitHub Explore our open-source compliance tools

Tools: TIAs

🔍 Read-only

List all transfer impact assessments (TIAs) for the organization.

Parameters: {
"organization_id": "org_xxx",
"size": 50,
"cursor": "optional_cursor"
}

Supports: Pagination Returns: Array of TIAs, next_cursor for pagination

Example:
AI: "List all transfer impact assessments"
[Uses listTransferImpactAssessments tool]

🔍 Read-only

Get a transfer impact assessment (TIA) by ID.

Parameters: {
"organization_id": "org_xxx",
"tia_id": "tia_xxx"
}

Returns: Full TIA details

Example:
AI: "Get details for TIA tia_abc123"
[Uses getTransferImpactAssessment tool]

✏️ Write

Add a new transfer impact assessment (TIA) for a processing activity.

Parameters: {
"organization_id": "org_xxx",
"processing_activity_id": "pa_xxx",
"destination_country": "US"
}

Returns: Created TIA object

Example:
AI: "Create a TIA for data transfer to the US for processing activity pa_abc123"
[Uses addTransferImpactAssessment tool]

✏️ Write

Update an existing transfer impact assessment (TIA).

Parameters: {
"organization_id": "org_xxx",
"tia_id": "tia_xxx",
"status": "APPROVED"
}

Returns: Updated TIA object

Example:
AI: "Approve TIA tia_abc123"
[Uses updateTransferImpactAssessment tool]

✏️ Write

Delete a transfer impact assessment (TIA).

Parameters: {
"organization_id": "org_xxx",
"tia_id": "tia_xxx"
}

Returns: Confirmation of deletion

Example:
AI: "Delete TIA tia_abc123"
[Uses deleteTransferImpactAssessment tool]