POST api/aktaktivitaet/delete
Request Information
URI Parameters
None.
Body Parameters
AktAktivitaet| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| OrganisationId | integer |
None. |
|
| PersonId | integer |
None. |
|
| UserId | integer |
None. |
|
| Betreff | string |
None. |
|
| Art | integer |
Required |
|
| Datum | date |
Required |
|
| Faellig | date |
None. |
|
| Status | integer |
Required |
|
| Memo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "eb88615c-6519-4bcc-a13c-da8c27b98f51",
"OrganisationId": 1,
"PersonId": 1,
"UserId": 1,
"Betreff": "sample string 3",
"Art": 4,
"Datum": "2025-12-11T19:13:32.545772+01:00",
"Faellig": "2025-12-11T19:13:32.545772+01:00",
"Status": 6,
"Memo": "sample string 7"
}
application/xml, text/xml
Sample:
<AktAktivitaet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Akt.Models"> <Art>4</Art> <Betreff>sample string 3</Betreff> <Datum>2025-12-11T19:13:32.545772+01:00</Datum> <Faellig>2025-12-11T19:13:32.545772+01:00</Faellig> <Id>1</Id> <Memo>sample string 7</Memo> <OrganisationId>1</OrganisationId> <PersonId>1</PersonId> <RowGuid>eb88615c-6519-4bcc-a13c-da8c27b98f51</RowGuid> <Status>6</Status> <UserId>1</UserId> </AktAktivitaet>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>