POST api/TransferSession

Request Information

URI Parameters

None.

Body Parameters

TransferSessionRequest
NameDescriptionTypeAdditional information
SessionKey

string

Required

ResetSessionByLogin

boolean

Request Formats

application/json, text/json

Sample:
{
  "SessionKey": "sample string 1",
  "ResetSessionByLogin": true
}

application/xml, text/xml

Sample:
<TransferSessionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SFMOMA.Data.Entities.Session">
  <ResetSessionByLogin>true</ResetSessionByLogin>
  <SessionKey>sample string 1</SessionKey>
</TransferSessionRequest>

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

Response Information

Resource Description

ApiSuccessOfTransferSessionResult
NameDescriptionTypeAdditional information
Success

boolean
Data

TransferSessionResult

Response Formats

application/json

Sample:
{
  "Success": true,
  "Data": {
    "SessionKey": "ZzBcz+335pn0ZqVYmtayB2iuIK1+cCJ8puY4MQF3grPHYYXVy9EbBGLysD0TcNFDH/u6wX65I4sT2RECWwqlam1lzZQ726WYfjM7wpAWRfQ="
  }
}

text/json

Sample:
{
  "Success": true,
  "Data": {
    "SessionKey": "KUfLLYwt5j2EuhqF/gcYe7MNwmc9XIr3KqZyig7InM7ECX655gstmbIfPeLQyk+VkQWHdFkJDBKiHpNHAulEXhi3dzx3lTfzrgKzogQtQnA="
  }
}

application/xml, text/xml

Sample:
<ApiSuccessOfTransferSessionResult5WS87vwN xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SFMOMA.Data.Api">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/SFMOMA.Data.Entities.Session">
    <d2p1:SessionKey>sample string 1</d2p1:SessionKey>
  </Data>
</ApiSuccessOfTransferSessionResult5WS87vwN>