v1

latestOpenAPI 3.0.22026-07-24113565544.0 KB
Withdrawals

List User Withdrawals

Retrieves a list of User Withdrawals by userID.

get/users/{userID}/funding/redemptions

Path parameters

userIDstring required

A unique identifier created for each User on DriveWealth's platform.

Example:cc07f91b-7ee1-4868-b8fc-823c70a1b932

The User's unique identifier.

Query parameters

statusstring

Comma separated payment statuses

typestring

Comma separated deposit types

limitinteger

The number of deposits to be returned per page. Minimum=1, Maximum=100

offsetstring

Should either be null or the last payment result in the previous request

Response

Retrieving a list of User Withdrawals by userID was Successful.

idstring

A unique identifier for the user's account redemption/withdrawal.

paymentIDstring

A unique identifier for the user's account redemption/withdrawal.

amountnumber

The amount that will be withdraw from the user's brokerage account.

wlpFinTranTypeIDstring

A unique identifier to id different type of transactions.

finTranReferencestring

The unique identifier that references back to the specific transaction.

timestampstring

The date and time of when the redemption was created.

Example response

[
  {
    "id": "-R8CC7",
    "paymentID": "-R8CC7",
    "amount": 250.25,
    "currency": {
      "name": "USD",
      "description": "US Dollar",
      "symbol": "$"
    },
    "status": {
      "id": 1,
      "message": "PENDING",
      "updated": "2022-12-11T22:28:21.810Z"
    },
    "accountDetails": {
      "accountID": "cc07f91b-7ee1-4868-b8fc-823c70a1b932.1407775317759",
      "accountNo": "DWBG000052",
      "accountType": {
        "name": "LIVE",
        "description": "Live Account"
      },
      "accountManagementType": {
        "name": "SELF",
        "description": "Self Directed Account"
      }
    },
    "fees": [
      {
        "type": "FEE_ACH",
        "description": "Fee - ACH",
        "amount": -5.99,
        "wlpFinTranTypeID": "c43bab85-2916-4831-a0db-66215150a6e4",
        "transactionCode": "JOURNAL",
        "finTranReference": "HG.cd22a78a-8a48-441c-89d2-ea400964a34b",
        "created": "2022-12-11T22:28:21.810Z",
        "currency": "USD",
        "symbol": "$"
      }
    ],
    "wlpFinTranTypeID": "c43bab85-2916-4831-a0db-66215150a6e4",
    "finTranReference": "HG.cd22a78a-8a48-441c-89d2-ea400964a34b",
    "timestamp": "2022-12-11T22:28:21.810Z"
  }
]