The following URL, Headers and Parameters are required for requests to this API endpoint. Where a parameter is optional, it will be indicated. Otherwise treat all parameters as mandatory.
GET /api/ss/library/assets HTTP/1.1Host: demo.attackforge.comX-SSAPI-KEY: APIKeyContent-Type: application/jsonConnection: close
name (string) (optional)
Name of the asset.
Example:
{"name": "..."}
type (string) (optional)
Type of asset. Must be one of the following: Web App, API, Mobile, Cloud, Infrastructure, Network, Wifi, Hardware, Other
Example:
{"type": "Web App"}
external_id (string) (optional)
External id for the asset. For example id associated with the assest in Configuration Management Database.
Example:
{"external_id": "..."}
The following example is a cURL request to get all assets from the library of type 'Web App'.
Include API Token instead of stars in 'X-SSAPI-KEY: ***************************************' parameter.
curl -X GET 'https://demo.attackforge.com/api/ss/library/assets' -H 'Host: localhost:3000' -H 'X-SSAPI-KEY: ***************************************' -H 'Content-Type: application/json' -H 'Connection: close' -d '{"type": "Web App"}'
Response contains an asset library count and array of asset library objects.
{"count": 999,"assets": [{"id": "...","created": "...","modified": "...","name": "...","type": "...","external_id": "...","details": "...","groups": "[{"name": "...", "id": "..."}]","projects": "[{"name": "...", "id": "..."}]","created_by": "..."}]}