Used to retrieve only a specific issue type. If left empty, the issues will be retrieved for all the types.(recommended)
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/
Request
Get a list of issue to import into your SIEM. Issues are one or more incidents that have been grouped by the Issue Keys. To receive a stream of the latest issues, save the issue id as bookmark and query on some interval for the latest issues that > this bookmark, ie the latest issue id you have previously queried. For additional details about each issue, you can query the GetIssueDetails API for the specific issue id
Used to retrieve latest issues by issue id. All issues > this parameter will be returned (recommended)
Used to retrieve latest issues by Date / Time. All issues > this parameter will be returnedIf neither the issue_id_gt parameter field or this field is provided as parameter, the returns will default to the last 7 days. e.g. '2024-01-02 15:04:05'
Field to sort by, Default value is issue_time.
- Mock server
https://apidoc.authmind.com/_mock/docs/getIssues
https://apidoc.authmind.com/{{.Host}}/amapi/v1/getIssues
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://apidoc.authmind.com/_mock/docs/getIssues?issue_type=Access+from+Anonymous+IP&issue_id_gt=string&issue_time_gt=2019-08-24T14%3A15%3A22Z&sort_order=ASC&sort_by=issue_id&from=0&size=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "success": true, "results": [ { … } ], "metadata": {} }
- Mock server
https://apidoc.authmind.com/_mock/docs/getIssueDetails
https://apidoc.authmind.com/{{.Host}}/amapi/v1/getIssueDetails
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://apidoc.authmind.com/_mock/docs/getIssueDetails?issue_id=string&sort_order=ASC&sort_by=incident_id&from=0&size=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "success": true, "results": [ { … } ], "metadata": {} }