POST api/GetParameterMovementListByProcess

Request Information

URI Parameters

None.

Body Parameters

ParameterMovementListByProcessRequest
NameDescriptionTypeAdditional information
id_process_movement

integer

None.

Id

integer

None.

User

string

None.

UserId

integer

None.

ValidationKey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id_process_movement": 1,
  "id": 2,
  "user": "sample string 3",
  "userId": 4,
  "validationKey": "sample string 5"
}

application/xml, text/xml

Sample:
<ParameterMovementListByProcessRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Request.ParameterMovement">
  <User xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Request">sample string 3</User>
  <UserId xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Request">4</UserId>
  <ValidationKey xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Request">sample string 5</ValidationKey>
  <Id xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Request">2</Id>
  <id_process_movement>1</id_process_movement>
</ParameterMovementListByProcessRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ParameterMovementListByProcessRequest'.

Response Information

Resource Description

ParameterMovementResponseList
NameDescriptionTypeAdditional information
ItemList

Collection of ParameterMovementResponse

None.

ResultCode

integer

None.

ResultMessage

string

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "itemList": [
    {
      "parameterMovementId": 1,
      "reference": "sample string 2",
      "sheetCode": "sample string 3",
      "process": "sample string 4",
      "parameter": "sample string 5",
      "unit": "sample string 6",
      "value": 1.0,
      "endDate": "2024-11-30T23:31:56.8823773-05:00",
      "resultCode": 8,
      "resultMessage": "sample string 9",
      "errorMessage": "sample string 10"
    },
    {
      "parameterMovementId": 1,
      "reference": "sample string 2",
      "sheetCode": "sample string 3",
      "process": "sample string 4",
      "parameter": "sample string 5",
      "unit": "sample string 6",
      "value": 1.0,
      "endDate": "2024-11-30T23:31:56.8823773-05:00",
      "resultCode": 8,
      "resultMessage": "sample string 9",
      "errorMessage": "sample string 10"
    }
  ],
  "resultCode": 1,
  "resultMessage": "sample string 2",
  "errorMessage": "sample string 3"
}

application/xml, text/xml

Sample:
<ParameterMovementResponseList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response.ParameterMovement">
  <ErrorMessage xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">sample string 3</ErrorMessage>
  <ResultCode xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">1</ResultCode>
  <ResultMessage xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">sample string 2</ResultMessage>
  <ItemList>
    <ParameterMovementResponse>
      <ErrorMessage xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">sample string 10</ErrorMessage>
      <ResultCode xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">8</ResultCode>
      <ResultMessage xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">sample string 9</ResultMessage>
      <EndDate>2024-11-30T23:31:56.8823773-05:00</EndDate>
      <Parameter>sample string 5</Parameter>
      <ParameterMovementId>1</ParameterMovementId>
      <Process>sample string 4</Process>
      <Reference>sample string 2</Reference>
      <SheetCode>sample string 3</SheetCode>
      <Unit>sample string 6</Unit>
      <Value>1</Value>
    </ParameterMovementResponse>
    <ParameterMovementResponse>
      <ErrorMessage xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">sample string 10</ErrorMessage>
      <ResultCode xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">8</ResultCode>
      <ResultMessage xmlns="http://schemas.datacontract.org/2004/07/SGAMovil.Response">sample string 9</ResultMessage>
      <EndDate>2024-11-30T23:31:56.8823773-05:00</EndDate>
      <Parameter>sample string 5</Parameter>
      <ParameterMovementId>1</ParameterMovementId>
      <Process>sample string 4</Process>
      <Reference>sample string 2</Reference>
      <SheetCode>sample string 3</SheetCode>
      <Unit>sample string 6</Unit>
      <Value>1</Value>
    </ParameterMovementResponse>
  </ItemList>
</ParameterMovementResponseList>