Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sdk-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.60.0
v3.61.1
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ Class | Method | HTTP request | Description
*AuthenticationUsersApi* | [**get_user_activity**](docs/AuthenticationUsersApi.md#get_user_activity) | **GET** /v2/users/activity | Get auth user activity
*AuthenticationUsersApi* | [**get_user_comments**](docs/AuthenticationUsersApi.md#get_user_comments) | **GET** /v2/users/me/comments | Get comments by user
*AuthenticationUsersApi* | [**login_user**](docs/AuthenticationUsersApi.md#login_user) | **POST** /v2/auth/login | Authenticate a user
*AuthenticationUsersApi* | [**submit_user_feedback**](docs/AuthenticationUsersApi.md#submit_user_feedback) | **POST** /v2/users/feedback | Submit feedback about the application
*BinariesApi* | [**download_zipped_binary**](docs/BinariesApi.md#download_zipped_binary) | **GET** /v2/binaries/{binary_id}/download-zipped | Downloads a zipped binary with password protection
*BinariesApi* | [**get_binary_additional_details**](docs/BinariesApi.md#get_binary_additional_details) | **GET** /v2/binaries/{binary_id}/additional-details | Gets the additional details of a binary
*BinariesApi* | [**get_binary_additional_details_status**](docs/BinariesApi.md#get_binary_additional_details_status) | **GET** /v2/binaries/{binary_id}/additional-details/status | Gets the status of the additional details task for a binary
Expand Down Expand Up @@ -446,6 +447,7 @@ Class | Method | HTTP request | Description
- [StringSource](docs/StringSource.md)
- [Structure](docs/Structure.md)
- [StructureMember](docs/StructureMember.md)
- [SubmitUserFeedbackRequest](docs/SubmitUserFeedbackRequest.md)
- [Symbols](docs/Symbols.md)
- [TTPS](docs/TTPS.md)
- [TTPSAttack](docs/TTPSAttack.md)
Expand Down
82 changes: 82 additions & 0 deletions docs/AuthenticationUsersApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Method | HTTP request | Description
[**get_user_activity**](AuthenticationUsersApi.md#get_user_activity) | **GET** /v2/users/activity | Get auth user activity
[**get_user_comments**](AuthenticationUsersApi.md#get_user_comments) | **GET** /v2/users/me/comments | Get comments by user
[**login_user**](AuthenticationUsersApi.md#login_user) | **POST** /v2/auth/login | Authenticate a user
[**submit_user_feedback**](AuthenticationUsersApi.md#submit_user_feedback) | **POST** /v2/users/feedback | Submit feedback about the application


# **get_requester_user_info**
Expand Down Expand Up @@ -409,3 +410,84 @@ Name | Type | Description | Notes

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **submit_user_feedback**
> BaseResponse submit_user_feedback(submit_user_feedback_request)

Submit feedback about the application

Submits feedback about the application and forwards it to the RevEng.ai project management tool.

### Example

* Api Key Authentication (APIKey):

```python
import revengai
from revengai.models.base_response import BaseResponse
from revengai.models.submit_user_feedback_request import SubmitUserFeedbackRequest
from revengai.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.reveng.ai
# See configuration.py for a list of all supported configuration parameters.
configuration = revengai.Configuration(
host = "https://api.reveng.ai"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: APIKey
configuration.api_key['APIKey'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['APIKey'] = 'Bearer'

# Enter a context with an instance of the API client
with revengai.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = revengai.AuthenticationUsersApi(api_client)
submit_user_feedback_request = revengai.SubmitUserFeedbackRequest() # SubmitUserFeedbackRequest |

try:
# Submit feedback about the application
api_response = api_instance.submit_user_feedback(submit_user_feedback_request)
print("The response of AuthenticationUsersApi->submit_user_feedback:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling AuthenticationUsersApi->submit_user_feedback: %s\n" % e)
```



### Parameters


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**submit_user_feedback_request** | [**SubmitUserFeedbackRequest**](SubmitUserFeedbackRequest.md)| |

### Return type

[**BaseResponse**](BaseResponse.md)

### Authorization

[APIKey](../README.md#APIKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

### HTTP response details

| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Successful Response | - |
**422** | Invalid request parameters | - |

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

31 changes: 31 additions & 0 deletions docs/SubmitUserFeedbackRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# SubmitUserFeedbackRequest


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**current_route** | **str** | The route from where the feedback was submitted |
**feedback** | **str** | The user's feedback |
**screen_capture_url** | **str** | | [optional]

## Example

```python
from revengai.models.submit_user_feedback_request import SubmitUserFeedbackRequest

# TODO update the JSON string below
json = "{}"
# create an instance of SubmitUserFeedbackRequest from a JSON string
submit_user_feedback_request_instance = SubmitUserFeedbackRequest.from_json(json)
# print the JSON string representation of the object
print(SubmitUserFeedbackRequest.to_json())

# convert the object into a dict
submit_user_feedback_request_dict = submit_user_feedback_request_instance.to_dict()
# create an instance of SubmitUserFeedbackRequest from a dict
submit_user_feedback_request_from_dict = SubmitUserFeedbackRequest.from_dict(submit_user_feedback_request_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


4 changes: 3 additions & 1 deletion revengai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
""" # noqa: E501


__version__ = "v3.60.0"
__version__ = "v3.61.1"

# Define package exports
__all__ = [
Expand Down Expand Up @@ -336,6 +336,7 @@
"StringSource",
"Structure",
"StructureMember",
"SubmitUserFeedbackRequest",
"Symbols",
"TTPS",
"TTPSAttack",
Expand Down Expand Up @@ -689,6 +690,7 @@
from revengai.models.string_source import StringSource as StringSource
from revengai.models.structure import Structure as Structure
from revengai.models.structure_member import StructureMember as StructureMember
from revengai.models.submit_user_feedback_request import SubmitUserFeedbackRequest as SubmitUserFeedbackRequest
from revengai.models.symbols import Symbols as Symbols
from revengai.models.ttps import TTPS as TTPS
from revengai.models.ttps_attack import TTPSAttack as TTPSAttack
Expand Down
Loading