POST api/krnmitgliedschaft/delete

Request Information

URI Parameters

None.

Body Parameters

KrnMitgliedschaft
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

MitgliedstypId

integer

Required

OrganisationId

integer

Required

Beginn

date

None.

Ende

date

None.

GrundEnde

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "bc97f0da-90d9-4626-b10b-bf63e2c0f72c",
  "MitgliedstypId": 3,
  "OrganisationId": 4,
  "Beginn": "2025-10-25T21:01:23.9338703+02:00",
  "Ende": "2025-10-25T21:01:23.9338703+02:00",
  "GrundEnde": "sample string 5"
}

application/xml, text/xml

Sample:
<KrnMitgliedschaft xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Krn.Models">
  <Beginn>2025-10-25T21:01:23.9338703+02:00</Beginn>
  <Ende>2025-10-25T21:01:23.9338703+02:00</Ende>
  <GrundEnde>sample string 5</GrundEnde>
  <Id>1</Id>
  <MitgliedstypId>3</MitgliedstypId>
  <OrganisationId>4</OrganisationId>
  <RowGuid>bc97f0da-90d9-4626-b10b-bf63e2c0f72c</RowGuid>
</KrnMitgliedschaft>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'KrnMitgliedschaft'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>