{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "dataSourceList": { "type": "array", "items": { "type": "string" }, "description": "List of data source IDs to include in the scan" }, "description": { "type": "string", "description": "Description of the scan profile" }, "isSingleRunScan": { "type": "boolean", "description": "Whether this is a one-time scan" }, "name": { "type": "string", "description": "Name for the scan profile" }, "scanTemplateId": { "type": "string", "description": "ID of the scan template to use" } }, "required": [ "PCID", "dataSourceList", "name" ]}
Export configured data sources as a JSON fileParameters:
Parameter
Type
Required
Default
Description
ids
string
No
—
Comma-separated list of data source IDs to export (omit for all)
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "ids": { "type": "string", "description": "Comma-separated list of data source IDs to export (omit for all)" } }, "required": [ "PCID" ]}
Retrieve a list of data source connectionsParameters:
Parameter
Type
Required
Default
Description
skip
integer
No
—
Number of records to skip for pagination
limit
integer
No
—
Maximum number of data sources to return
requireTotalCount
boolean
No
—
Whether to include total count in response
sort
string
No
—
Sort results by specified field
filter
string
No
—
Filter results based on field values
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "skip": { "type": "integer", "description": "Number of records to skip for pagination" }, "limit": { "type": "integer", "description": "Maximum number of data sources to return" }, "requireTotalCount": { "type": "boolean", "description": "Whether to include total count in response" }, "sort": { "type": "string", "description": "Sort results by specified field" }, "filter": { "type": "string", "description": "Filter results based on field values" } }, "required": [ "PCID" ]}
Retrieve security issues and actionable insightsParameters:
Parameter
Type
Required
Default
Description
skip
integer
No
—
Number of records to skip for pagination
limit
integer
No
—
Maximum number of records to return
filter
string
No
—
BigID Query Language filter to narrow results
fields
string
No
—
Comma-separated list of fields to return
sort
string
No
—
Sort field with optional ASC/DESC
requireTotalCount
boolean
No
—
Whether to include totalCount in response
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "skip": { "type": "integer", "description": "Number of records to skip for pagination" }, "limit": { "type": "integer", "description": "Maximum number of records to return" }, "filter": { "type": "string", "description": "BigID Query Language filter to narrow results" }, "fields": { "type": "string", "description": "Comma-separated list of fields to return" }, "sort": { "type": "string", "description": "Sort field with optional ASC/DESC" }, "requireTotalCount": { "type": "boolean", "description": "Whether to include totalCount in response" } }, "required": [ "PCID" ]}
Update the status of a single security caseParameters:
Parameter
Type
Required
Default
Description
caseId
string
Yes
—
The case ID to update
auditReason
string
No
—
Reason for the status change (for audit trail)
caseStatus
string
Yes
—
New status value (e.g., resolved, open, dismissed)
Show inputSchema
{ "type": "object", "properties": { "PCID": { "type": "string", "description": "Pink Connect ID for the authenticated connection" }, "caseId": { "type": "string", "description": "The case ID to update" }, "auditReason": { "type": "string", "description": "Reason for the status change (for audit trail)" }, "caseStatus": { "type": "string", "description": "New status value (e.g., resolved, open, dismissed)" } }, "required": [ "PCID", "caseId", "caseStatus" ]}