POST api/LogoType/CRUD
Add/Update/Delete LogoType
Request Information
URI Parameters
None.
Body Parameters
String Array of LogoType And Information(Mandatory)
Collection of LogoTypesInfoName | Description | Type | Additional information |
---|---|---|---|
LogoTypeId | integer |
None. |
|
LogoTypeName | string |
None. |
|
Width | integer |
None. |
|
Height | integer |
None. |
|
IsActive | boolean |
None. |
|
Deleted | integer |
None. |
Request Formats
application/json, text/json
Sample:
[ { "LogoTypeId": 1, "LogoTypeName": "sample string 2", "Width": 3, "Height": 4, "IsActive": true, "Deleted": 1 }, { "LogoTypeId": 1, "LogoTypeName": "sample string 2", "Width": 3, "Height": 4, "IsActive": true, "Deleted": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfLogoTypesInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1"> <LogoTypesInfo> <Deleted>1</Deleted> <Height>4</Height> <IsActive>true</IsActive> <LogoTypeId>1</LogoTypeId> <LogoTypeName>sample string 2</LogoTypeName> <Width>3</Width> </LogoTypesInfo> <LogoTypesInfo> <Deleted>1</Deleted> <Height>4</Height> <IsActive>true</IsActive> <LogoTypeId>1</LogoTypeId> <LogoTypeName>sample string 2</LogoTypeName> <Width>3</Width> </LogoTypesInfo> </ArrayOfLogoTypesInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>