GET api/LogoType/{id}
Get LogoType by provided ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
LogoType| Name | Description | Type | Additional information |
|---|---|---|---|
| LogoTypeId | integer |
None. |
|
| LogoTypeName | string |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedDateTime | date |
None. |
|
| LastUpdatedDateTime | date |
None. |
|
| CreatedBy | integer |
None. |
|
| LastModifiedBy | integer |
None. |
|
| IsDeleted | boolean |
None. |
|
| Width | integer |
None. |
|
| Height | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"LogoTypeId": 1,
"LogoTypeName": "sample string 2",
"IsActive": true,
"CreatedDateTime": "2026-02-05T09:17:41.8540262+00:00",
"LastUpdatedDateTime": "2026-02-05T09:17:41.8540262+00:00",
"CreatedBy": 1,
"LastModifiedBy": 1,
"IsDeleted": true,
"Width": 3,
"Height": 4
}
application/xml, text/xml
Sample:
<LogoType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1"> <CreatedBy>1</CreatedBy> <CreatedDateTime>2026-02-05T09:17:41.8540262+00:00</CreatedDateTime> <Height>4</Height> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <LastModifiedBy>1</LastModifiedBy> <LastUpdatedDateTime>2026-02-05T09:17:41.8540262+00:00</LastUpdatedDateTime> <LogoTypeId>1</LogoTypeId> <LogoTypeName>sample string 2</LogoTypeName> <Width>3</Width> </LogoType>