Returns list of assets sorted by latest activity time in descending order.
AuthMind API (1.0.0)
Welcome to AuthMind API documentation. This guide is designed to help developers understand how to integrate and interact with our APIs effectively. Here, you will find detailed information on the various endpoints, request and response formats, authentication mechanisms, and best practices for using our APIs.
AuthMind APIs are built to provide seamless access to our services, allowing you to enhance your applications with powerful features and functionalities. Whether you are looking to retrieve data or manage resources, our comprehensive API documentation will guide you through each step of the process.
Getting Started: Learn how to generate tokens to access the APIs and API documentation.
Endpoints: Detailed descriptions of each endpoint, including parameters, request, and response structures.
We are committed to providing a user-friendly API experience. Let's get started!
- Log in to AuthMind and go to the Admin section.
- From the left navigation, click API Tokens. The Manage API Tokens page is displayed
- From the top-right side, click Add. The Add API Client dialog is displayed.
- Enter a name for the client.
- By default, a one-year expiration date is set from the creation date of the token. You can change this date, as required.
- Click Submit. A success message is displayed. You can also see a Token Details dialog that contains the API token (JWT).
- Copy the token.
- Click OK to close the Token Details dialog. You can see the token is listed on the Manage API Tokens page.
https://apidoc.authmind.com/_mock/docs/
https://apidoc.authmind.com/{{.Host}}/amapi/v1/
Record per page. Default no of records per page is 50. Maximum allowed records per page is 1000.
Returns list of assets having latest activity time greater than the specified time. The format of time is 'YYYY-MM-DD HH:MM:SS'.
Filters assets to include only those with a posture score greater than or equal to the specified value. Score must be greater than or equal to 0.0
- Mock server
https://apidoc.authmind.com/_mock/docs/assets
https://apidoc.authmind.com/{{.Host}}/amapi/v1/assets
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://apidoc.authmind.com/_mock/docs/assets?from=0&size=0&latest_activity_time_gt=string&score=0&asset_type=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "error": "string", "result": { "data": [ … ], "total": 0 }, "success": true }
- Mock server
https://apidoc.authmind.com/_mock/docs/asset/details
https://apidoc.authmind.com/{{.Host}}/amapi/v1/asset/details
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://apidoc.authmind.com/_mock/docs/asset/details?asset_name=string&asset_type=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "error": "string", "result": { "_id": "string", "score": 0, "latest_activity_time": "2019-08-24T14:15:22Z", "flow_count": 0, "identity_count": 0, "is_known": true, "issue_details": { … } }, "success": true }
- Mock server
https://apidoc.authmind.com/_mock/docs/asset/hosts
https://apidoc.authmind.com/{{.Host}}/amapi/v1/asset/hosts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://apidoc.authmind.com/_mock/docs/asset/hosts?asset_name=string&asset_type=string&from=0&size=0&latest_activity_time_gt=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "error": "string", "result": { "data": [ … ], "total": 0 }, "success": true }