POST api/Customer/share_transfer

Request Information

URI Parameters

None.

Body Parameters

ShareTransferModel
NameDescriptionTypeAdditional information
Code

integer

None.

ShareCode

integer

None.

Description

string

None.

ShareFrom

integer

None.

ShareTo

integer

None.

DOT

string

None.

TOT

decimal number

None.

PostedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Code": 1,
  "ShareCode": 2,
  "Description": "sample string 3",
  "ShareFrom": 4,
  "ShareTo": 5,
  "DOT": "sample string 6",
  "TOT": 7.1,
  "PostedBy": 8
}

application/xml, text/xml

Sample:
<ShareTransferModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FscAPI.Models">
  <Code>1</Code>
  <DOT>sample string 6</DOT>
  <Description>sample string 3</Description>
  <PostedBy>8</PostedBy>
  <ShareCode>2</ShareCode>
  <ShareFrom>4</ShareFrom>
  <ShareTo>5</ShareTo>
  <TOT>7.1</TOT>
</ShareTransferModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultModelOfString
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

Message

string

None.

Data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "Message": "sample string 2",
  "Data": "sample string 3"
}

application/xml, text/xml

Sample:
<ResultModelOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FscAPI.Models">
  <Data>sample string 3</Data>
  <Message>sample string 2</Message>
  <ResponseCode>1</ResponseCode>
</ResultModelOfstring>