POST api/History

Post list of Historys.

Request Information

URI Parameters

None.

Body Parameters

Collection of ApiHistoryInput
NameDescriptionTypeAdditional information
id

integer

None.

id_company

integer

None.

id_history_event_type

integer

None.

description

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "id_company": 1,
    "id_history_event_type": 1,
    "description": "sample string 2"
  },
  {
    "id": 1,
    "id_company": 1,
    "id_history_event_type": 1,
    "description": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApiHistoryInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ApiHistoryInput>
    <id>1</id>
    <id_company>1</id_company>
    <id_history_event_type>1</id_history_event_type>
    <description>sample string 2</description>
  </ApiHistoryInput>
  <ApiHistoryInput>
    <id>1</id>
    <id_company>1</id_company>
    <id_history_event_type>1</id_history_event_type>
    <description>sample string 2</description>
  </ApiHistoryInput>
</ArrayOfApiHistoryInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.