POST api/suggestionType/GetSuggestionTypeById?id={id}&token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
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:39.1395313-03:00"
}
application/xml, text/xml
Sample:
<SuggestionTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models"> <DeleteDate>2025-12-13T11:12:39.1395313-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>