POST api/Plants/{companyId}

Create a new Plant

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

integer

Required

Body Parameters

PlantNew
NameDescriptionTypeAdditional information
PlantName

string

None.

PlantCode

string

None.

CompanyId

integer

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "PlantName": "sample string 1",
  "PlantCode": "sample string 2",
  "CompanyId": 3,
  "IsActive": true
}

text/html

Sample:
{"PlantName":"sample string 1","PlantCode":"sample string 2","CompanyId":3,"IsActive":true}

application/xml, text/xml

Sample:
<PlantNew xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TTMWM_MECLAIM_API.ViewModels">
  <CompanyId>3</CompanyId>
  <IsActive>true</IsActive>
  <PlantCode>sample string 2</PlantCode>
  <PlantName>sample string 1</PlantName>
</PlantNew>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ServiceResultTypedOfPlant
NameDescriptionTypeAdditional information
Code

integer

None.

Errors

Collection of string

None.

Data

Plant

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 1,
  "Errors": [
    "sample string 1",
    "sample string 2"
  ],
  "Data": {
    "PlantId": 1,
    "PlantName": "sample string 2",
    "PlantCode": "sample string 3",
    "CompanyId": 4,
    "IsActive": true
  }
}

text/html

Sample:
{"Code":1,"Errors":["sample string 1","sample string 2"],"Data":{"PlantId":1,"PlantName":"sample string 2","PlantCode":"sample string 3","CompanyId":4,"IsActive":true}}

application/xml, text/xml

Sample:
<ServiceResultTypedOfPlantYj8O1tFc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSW.Common.Models">
  <Code>1</Code>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/TTMWM_MECLAIM_API.ViewModels">
    <d2p1:CompanyId>4</d2p1:CompanyId>
    <d2p1:IsActive>true</d2p1:IsActive>
    <d2p1:PlantCode>sample string 3</d2p1:PlantCode>
    <d2p1:PlantId>1</d2p1:PlantId>
    <d2p1:PlantName>sample string 2</d2p1:PlantName>
  </Data>
  <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Errors>
</ServiceResultTypedOfPlantYj8O1tFc>