POST Joint/CopyJoin

Request Information

URI Parameters

None.

Body Parameters

IExecuteJoinLst
NameDescriptionTypeAdditional information
IId

Collection of integer

None.

MainID

integer

None.

Maker

string

None.

Create_UserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "IId": [
    1,
    2
  ],
  "MainID": 1,
  "Maker": "sample string 2",
  "Create_UserId": 3
}

application/xml, text/xml

Sample:
<IExecuteJoinLst xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.Request">
  <Create_UserId>3</Create_UserId>
  <IId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
  </IId>
  <MainID>1</MainID>
  <Maker>sample string 2</Maker>
</IExecuteJoinLst>

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

Response Information

Resource Description

BaseResult
NameDescriptionTypeAdditional information
Success

integer

None.

Msg

string

None.

Token

string

None.

Key

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": 1,
  "Msg": "sample string 2",
  "Token": "sample string 3",
  "Key": "sample string 4"
}

application/xml, text/xml

Sample:
<BaseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">
  <Key>sample string 4</Key>
  <Msg>sample string 2</Msg>
  <Success>1</Success>
  <Token>sample string 3</Token>
</BaseResult>