POST api/usrauthenticatorpush/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
UsrAuthenticatorPush| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| UsrAuthenticatorId | integer |
Required |
|
| DeviceId | string |
None. |
|
| PushToken | string |
None. |
|
| Platform | string |
None. |
|
| Zusatzfeld1 | string |
None. |
|
| Zusatzfeld2 | string |
None. |
|
| Bemerkung | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "6f076af0-35d5-4089-85f1-3de50a236159",
"UsrAuthenticatorId": 3,
"DeviceId": "sample string 4",
"PushToken": "sample string 5",
"Platform": "sample string 6",
"Zusatzfeld1": "sample string 7",
"Zusatzfeld2": "sample string 8",
"Bemerkung": "sample string 9"
}
application/xml, text/xml
Sample:
<UsrAuthenticatorPush xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.Tools.Usr.Models"> <Bemerkung>sample string 9</Bemerkung> <DeviceId>sample string 4</DeviceId> <Id>1</Id> <Platform>sample string 6</Platform> <PushToken>sample string 5</PushToken> <RowGuid>6f076af0-35d5-4089-85f1-3de50a236159</RowGuid> <UsrAuthenticatorId>3</UsrAuthenticatorId> <Zusatzfeld1>sample string 7</Zusatzfeld1> <Zusatzfeld2>sample string 8</Zusatzfeld2> </UsrAuthenticatorPush>