POST api/TransferAccounts/CreateOrLinkAccountAndTransferData

Request Information

URI Parameters

None.

Body Parameters

TransferAccountRequestVM
NameDescriptionTypeAdditional information
IsCreateNewAccount

boolean

None.

V1UserId

globally unique identifier

None.

ParentAccountId

string

None.

SubAccountId

string

None.

V2PlanId

string

None.

V2UserId

string

None.

LinkOnlyNotTransferData

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "IsCreateNewAccount": true,
  "V1UserId": "767ea8f0-ab0e-4a37-9246-45c7f215d7fc",
  "ParentAccountId": "sample string 3",
  "SubAccountId": "sample string 4",
  "V2PlanId": "sample string 5",
  "V2UserId": "sample string 6",
  "LinkOnlyNotTransferData": true
}

application/xml, text/xml

Sample:
<TransferAccountRequestVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MindMe.Common.Standard.Models.Transfer">
  <IsCreateNewAccount>true</IsCreateNewAccount>
  <LinkOnlyNotTransferData>true</LinkOnlyNotTransferData>
  <ParentAccountId>sample string 3</ParentAccountId>
  <SubAccountId>sample string 4</SubAccountId>
  <V1UserId>767ea8f0-ab0e-4a37-9246-45c7f215d7fc</V1UserId>
  <V2PlanId>sample string 5</V2PlanId>
  <V2UserId>sample string 6</V2UserId>
</TransferAccountRequestVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.