POST api/MobileApi/GetContainerTypeByRequestId

Request Information

URI Parameters

None.

Body Parameters

MobileCRModel
NameDescriptionTypeAdditional information
ContainerRequestId

string

Required

UserId

integer

Required

ClientId

string

Required

Token

string

Required

ServerName

string

Required

LastUpdatedTime

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ContainerRequestId": "sample string 1",
  "UserId": 1,
  "ClientId": "sample string 2",
  "Token": "sample string 3",
  "ServerName": "sample string 4",
  "LastUpdatedTime": 5
}

application/xml, text/xml

Sample:
<MobileCRModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Chemtest.EntityModel.Models">
  <ClientId>sample string 2</ClientId>
  <LastUpdatedTime>5</LastUpdatedTime>
  <ServerName>sample string 4</ServerName>
  <Token>sample string 3</Token>
  <UserId>1</UserId>
  <ContainerRequestId>sample string 1</ContainerRequestId>
</MobileCRModel>

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 'MobileCRModel'.

Response Information

Resource Description

ResponseOfCrCntnr
NameDescriptionTypeAdditional information
statusCode

string

None.

responseData

CrCntnr

None.

status

string

None.

Response Formats

application/json, text/json

Sample:
{
  "statusCode": "sample string 1",
  "responseData": {
    "CR_CNTNRID": "sample string 1",
    "CONTAINER": "sample string 2",
    "MODTIME": "sample string 3",
    "is_deleted": "sample string 4",
    "last_updated_time": "sample string 5"
  },
  "status": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseOfCrCntnr_SABevsiO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Chemtest.EntityModel.Models">
  <responseData>
    <CONTAINER>sample string 2</CONTAINER>
    <CR_CNTNRID>sample string 1</CR_CNTNRID>
    <MODTIME>sample string 3</MODTIME>
    <is_deleted>sample string 4</is_deleted>
    <last_updated_time>sample string 5</last_updated_time>
  </responseData>
  <status>sample string 2</status>
  <statusCode>sample string 1</statusCode>
</ResponseOfCrCntnr_SABevsiO>