POST api/Attendance?apiKey={apiKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| apiKey | string |
Required |
Body Parameters
Collection of ValueTupleOfDoubleAndDouble| Name | Description | Type | Additional information |
|---|---|---|---|
| Item1 | decimal number |
None. |
|
| Item2 | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Item1": 1.1,
"Item2": 2.1
},
{
"Item1": 1.1,
"Item2": 2.1
}
]
application/xml, text/xml
Sample:
<ArrayOfValueTupleOfdoubledouble xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/System">
<ValueTupleOfdoubledouble>
<Item1>1.1</Item1>
<Item2>2.1</Item2>
</ValueTupleOfdoubledouble>
<ValueTupleOfdoubledouble>
<Item1>1.1</Item1>
<Item2>2.1</Item2>
</ValueTupleOfdoubledouble>
</ArrayOfValueTupleOfdoubledouble>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
decimal numberResponse Formats
application/json, text/json
Sample:
1.1
application/xml, text/xml
Sample:
<double xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1.1</double>