Skip to content

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.

Key Sections of this Documentation

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!

Getting Started

  1. Log in to AuthMind and go to the Admin section.
  2. From the left navigation, click API Tokens. The Manage API Tokens page is displayed
  3. From the top-right side, click Add. The Add API Client dialog is displayed.
  4. Enter a name for the client.
  5. By default, a one-year expiration date is set from the creation date of the token. You can change this date, as required.
  6. Click Submit. A success message is displayed. You can also see a Token Details dialog that contains the API token (JWT).
  7. Copy the token.
  8. Click OK to close the Token Details dialog. You can see the token is listed on the Manage API Tokens page.
Download OpenAPI description
Languages
Servers
Mock server

https://apidoc.authmind.com/_mock/docs/

https://apidoc.authmind.com/{{.Host}}/amapi/v1/

Operations
Operations
Operations
Operations

Request

Returns list of assets sorted by latest activity time in descending order.

Security
AuthorizationHeader
Query
frominteger

Page number

sizeinteger

Record per page. Default no of records per page is 50. Maximum allowed records per page is 1000.

latest_activity_time_gtstring

Returns list of assets having latest activity time greater than the specified time. The format of time is 'YYYY-MM-DD HH:MM:SS'.

scorenumber

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

asset_typestring

Asset type

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>'

Responses

OK

Bodyapplication/json
errorstring
resultobject(models.OutListAssetResultResponse)
successboolean
Response
application/json
{ "error": "string", "result": { "data": [], "total": 0 }, "success": true }

Request

Returns asset details

Security
AuthorizationHeader
Query
asset_namestringrequired

Asset Name

asset_typestringrequired

Asset Type

curl -i -X GET \
  'https://apidoc.authmind.com/_mock/docs/asset/details?asset_name=string&asset_type=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
errorstring
resultobject
successboolean
Response
application/json
{ "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 }

Request

Returns a list of hosts associated with an asset sorted by latest activity time in descending order.

Security
AuthorizationHeader
Query
asset_namestringrequired

Asset Name

asset_typestringrequired

Asset Type

frominteger

Page number

sizeinteger

Record per page. Default no of records per page is 50. Maximum allowed records per page is 100.

latest_activity_time_gtstring

Returns list of asset hosts having latest activity time greater than the specified time if provided. The format of time is 'YYYY-MM-DD HH:MM:SS'.

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>'

Responses

OK

Bodyapplication/json
errorstring
resultobject(models.OutAssetHostsMainResultResponse)
successboolean
Response
application/json
{ "error": "string", "result": { "data": [], "total": 0 }, "success": true }
Operations
Operations