POST api/TransportApi/Post_transport_for_save_update

Request Information

URI Parameters

None.

Body Parameters

Transport
NameDescriptionTypeAdditional information
TrpId

string

None.

TrpName

string

None.

GSTIN

string

None.

Database

string

None.

Compcode

string

None.

EventType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TrpId": "sample string 1",
  "TrpName": "sample string 2",
  "GSTIN": "sample string 3",
  "Database": "sample string 4",
  "Compcode": "sample string 5",
  "EventType": "sample string 6"
}

application/xml, text/xml

Sample:
<Transport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOL_Business_Objects_Layer_">
  <Compcode>sample string 5</Compcode>
  <Database>sample string 4</Database>
  <EventType>sample string 6</EventType>
  <GSTIN>sample string 3</GSTIN>
  <TrpId>sample string 1</TrpId>
  <TrpName>sample string 2</TrpName>
</Transport>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponse
NameDescriptionTypeAdditional information
status

boolean

None.

statuscode

HttpStatusCode

None.

title

string

None.

message

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "statuscode": 100,
  "title": "sample string 2",
  "message": "sample string 3",
  "data": {}
}

application/xml, text/xml

Sample:
<ApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOL_Business_Objects_Layer_">
  <data />
  <message>sample string 3</message>
  <status>true</status>
  <statuscode>Continue</statuscode>
  <title>sample string 2</title>
</ApiResponse>