POST api/fixtime/save

Request Information

URI Parameters

None.

Body Parameters

FixTimeDto
NameDescriptionTypeAdditional information
Ids

Collection of integer

None.

HH

integer

None.

MM

integer

None.

Year

integer

None.

Period

integer

None.

Type

integer

None.

Remark

string

None.

FlightId

integer

None.

Count

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Ids": [
    1,
    2
  ],
  "HH": 1,
  "MM": 2,
  "Year": 3,
  "Period": 4,
  "Type": 5,
  "Remark": "sample string 6",
  "FlightId": 1,
  "Count": 1
}

text/html

Sample:
{"Ids":[1,2],"HH":1,"MM":2,"Year":3,"Period":4,"Type":5,"Remark":"sample string 6","FlightId":1,"Count":1}

application/xml, text/xml

Sample:
<FixTimeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AirpocketAPI.Controllers">
  <Count>1</Count>
  <FlightId>1</FlightId>
  <HH>1</HH>
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Ids>
  <MM>2</MM>
  <Period>4</Period>
  <Remark>sample string 6</Remark>
  <Type>5</Type>
  <Year>3</Year>
</FixTimeDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.