Download OpenAPI specification:
This specification describes the REST APIs used by Insights to define and export data.
To use the APIs, each point product will require the following
Dimensions are qualitative fields i.e. they cannot be measured. Some examples of Dimesions include Category, Domain, Country etc.
Measures are the quantitative fields i.e. those fields which can be generally represented as numbers or as boolean fields. Some examples of Measures include bytesDownloaded, latency, avScanDone etc.
Collections define various type of data that is processed by Insights. Each collection has a set of dimensions and measures associated with it. Each collection is associated with a point product code. for example, the collection 'Admin' with point product code 'SSE' contains data related to admin activities in SSE product.
Generate a bearer access token that can be used for authorization purpose. Token Validity: The generated bearer access token is valid for 59 minutes after creation.
X-API-KEY
required
|
string
Example: api-key-string
API key for authentication. Generate this token from Platform Services > Admin. |
# Generate bearer access token curl -X POST "https://portal.forcepointone.com/api/apikeys/token" \ -H "X-API-KEY: your-api-key-string" \ -H "Content-Type: application/json"
{- "token": "at_Gpl9pruW7mpHykzzdvBDgg4v2ozN9NJ8-LHpVzpLUkA..."
}
Exports data from the specified collection in the requested format (JSON or CSV). The response format is determined by the Accept header.
ppcode
required
|
string
point product code identifying the data source eg RBI, SSE etc. |
name
required
|
string
Collection name to export data from eg. Admin, CASBInline, CASBAPI, ZTNA, SWG, DLP, Health etc for SSE. |
Accept |
string
Enum: "application/json" "text/csv" "application/csv"
Desired response format. |
X-Correlation-Id |
string
Correlation ID for request tracking. |
object
|
|
Array of objects (ReportRequestFields)
|
|
limit |
integer
|
offset |
integer
|
starttime |
datetime
|
{- "filters": {
- "act": {
- "eq": [
- "allowed"
]
}
}, - "fields": [
- {
- "name": "eventTime"
}
], - "limit": 300,
- "offset": 0,
- "starttime": "2024-08-01 00:00:00"
}
{- "data": [
- { }
], - "status": "string"
}