POST api/lizausbildungsgang2profil/preparenew
Request Information
URI Parameters
None.
Body Parameters
Collection of KeyValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Value | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Value": "sample string 2"
},
{
"Id": 1,
"Value": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
<KeyValue>
<Id>1</Id>
<Value>sample string 2</Value>
</KeyValue>
<KeyValue>
<Id>1</Id>
<Value>sample string 2</Value>
</KeyValue>
</ArrayOfKeyValue>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
LizAusbildungsgang2Profil| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| AusbildungsgangId | integer |
Required |
|
| ProfilId | integer |
Required |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "b6dff9c5-62a3-472a-b514-68c2e60ac548",
"AusbildungsgangId": 3,
"ProfilId": 4
}
application/xml, text/xml
Sample:
<LizAusbildungsgang2Profil xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Liz.Models"> <AusbildungsgangId>3</AusbildungsgangId> <Id>1</Id> <ProfilId>4</ProfilId> <RowGuid>b6dff9c5-62a3-472a-b514-68c2e60ac548</RowGuid> </LizAusbildungsgang2Profil>