POST api/suggestionType/GetAllSuggestionTypes?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SuggestionTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Type_BR | string |
None. |
|
| Type_US | string |
None. |
|
| Type_ES | string |
None. |
|
| Deleted | boolean |
None. |
|
| DeleteDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Type_BR": "sample string 2",
"Type_US": "sample string 3",
"Type_ES": "sample string 4",
"Deleted": true,
"DeleteDate": "2025-12-13T11:12:30.3113348-03:00"
},
{
"Id": 1,
"Type_BR": "sample string 2",
"Type_US": "sample string 3",
"Type_ES": "sample string 4",
"Deleted": true,
"DeleteDate": "2025-12-13T11:12:30.3113348-03:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfSuggestionTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<SuggestionTypeModel>
<DeleteDate>2025-12-13T11:12:30.3113348-03:00</DeleteDate>
<Deleted>true</Deleted>
<Id>1</Id>
<Type_BR>sample string 2</Type_BR>
<Type_ES>sample string 4</Type_ES>
<Type_US>sample string 3</Type_US>
</SuggestionTypeModel>
<SuggestionTypeModel>
<DeleteDate>2025-12-13T11:12:30.3113348-03:00</DeleteDate>
<Deleted>true</Deleted>
<Id>1</Id>
<Type_BR>sample string 2</Type_BR>
<Type_ES>sample string 4</Type_ES>
<Type_US>sample string 3</Type_US>
</SuggestionTypeModel>
</ArrayOfSuggestionTypeModel>