POST api/DisableSponsor
Request Information
URI Parameters
None.
Body Parameters
sponsor| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
|
| description | string |
None. |
|
| imagelocation | string |
None. |
|
| active | boolean |
None. |
|
| tm | date |
None. |
|
| imagefilename | string |
None. |
|
| contenttype | string |
None. |
|
| imagedata | Collection of byte |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"name": "sample string 2",
"description": "sample string 3",
"imagelocation": "sample string 4",
"active": true,
"tm": "2025-12-12T12:41:42.8038426+01:00",
"imagefilename": "sample string 5",
"contenttype": "sample string 6",
"imagedata": "QEA="
}
application/xml, text/xml
Sample:
<sponsor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CryptoApi.DAL"> <active>true</active> <contenttype>sample string 6</contenttype> <description>sample string 3</description> <id>1</id> <imagedata>QEA=</imagedata> <imagefilename>sample string 5</imagefilename> <imagelocation>sample string 4</imagelocation> <name>sample string 2</name> <tm>2025-12-12T12:41:42.8038426+01:00</tm> </sponsor>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.