POST api/usrauthenticator/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:
Sample not available.
Response Information
Resource Description
UsrAuthenticator| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| UsrUserId | integer |
Required |
|
| Name | string |
None. |
|
| IsEnabled | integer |
Required |
|
| IsPrimary | integer |
Required |
|
| CreatedAt | date |
Required |
|
| LastUsedAt | date |
None. |
|
| Zusatzfeld1 | string |
None. |
|
| Zusatzfeld2 | string |
None. |
|
| Bemerkung | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "c993f1ec-7aaf-4a51-8518-0549ece1b7b8",
"UsrUserId": 3,
"Name": "sample string 4",
"IsEnabled": 5,
"IsPrimary": 6,
"CreatedAt": "2026-04-26T11:36:20.4598364+02:00",
"LastUsedAt": "2026-04-26T11:36:20.4608352+02:00",
"Zusatzfeld1": "sample string 8",
"Zusatzfeld2": "sample string 9",
"Bemerkung": "sample string 10"
}
application/xml, text/xml
Sample:
<UsrAuthenticator xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.Tools.Usr.Models"> <Bemerkung>sample string 10</Bemerkung> <CreatedAt>2026-04-26T11:36:20.4598364+02:00</CreatedAt> <Id>1</Id> <IsEnabled>5</IsEnabled> <IsPrimary>6</IsPrimary> <LastUsedAt>2026-04-26T11:36:20.4608352+02:00</LastUsedAt> <Name>sample string 4</Name> <RowGuid>c993f1ec-7aaf-4a51-8518-0549ece1b7b8</RowGuid> <UsrUserId>3</UsrUserId> <Zusatzfeld1>sample string 8</Zusatzfeld1> <Zusatzfeld2>sample string 9</Zusatzfeld2> </UsrAuthenticator>