v1

latestOpenAPI 3.0.22026-07-24113565544.0 KB
Asset Transfer

Create Minor Graduation Transfer

If an Account is opened for the purpose of allowing a minor to invest, this API will allow for the transfer of assets from this account to the minor's own named account once they reach the age of majority.

post/asset-transfers/minor-graduation

Request body

sourcestring

The user's unique account number, that is human readable.

destinationstring

The DriveWealth destination account number where all assets will be transferred to.

commentstring

A way to store a message/comment on the this object.

metadataMetadata

The metadata object allows for creating a maximum of 5 keys (max 36 characters) and each value cannot exceed more than 128 bytes.

Example request

{
  "source": "DWBG000052",
  "destination": "LKKZ000004",
  "comment": "Hey! Welcome to DriveWealth Developer Docs!",
  "metadata": {
    "myCustomKey": "myCustomValue"
  }
}

Response

Initiating a transfer was successful

idstring

The unique identifier of the asset transfer.

createdstring date-time
updatedstring date-time

Example response

{
  "id": "c85b231a-2bc9-11ee-be56-0242ac120002",
  "partner": {
    "id": "80f9b672-120d-4b73-9cc9-42fb3262c4b9",
    "name": "Tendies Trading Company"
  },
  "created": "2022-12-22T06:07:41Z",
  "updated": "2022-12-22T06:07:41Z",
  "auditDetails": [
    {
      "timestamp": "2022-12-22T06:07:41Z"
    }
  ]
}