DriveWealth Beneficiaries API

The Beneficiaries API from DriveWealth — 1 operation(s) for beneficiaries.

Operations 3

POST /accounts/{accountID}/beneficiaries Create Account Beneficiaries
GET /accounts/{accountID}/beneficiaries Retrieve Account Beneficiaries
DELETE /accounts/{accountID}/beneficiaries Delete Account Beneficiaries

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/drivewealth-beneficiaries-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

drivewealth-beneficiaries-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DriveWealth Accounts Beneficiaries API
  version: '1.0'
servers:
- url: https://bo-api.drivewealth.io/back-office
  description: Sandbox server (Uses test data)
- url: https://bo-api.drivewealth.net/back-office
  description: Production Server (Uses LIVE data)
tags:
- name: Beneficiaries
  x-displayName: Beneficiaries
paths:
  /accounts/{accountID}/beneficiaries:
    post:
      tags:
      - Beneficiaries
      parameters:
      - in: path
        name: accountID
        schema:
          $ref: '#/components/schemas/accountID'
        required: true
      summary: Create Account Beneficiaries
      description: Creates an Account Beneficiary by accountID.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BeneficiaryReq'
        required: true
      responses:
        '200':
          description: Creating an Account Beneficiary was Successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BeneficiaryRes'
      security:
      - bearerAuth: []
        dwAppKey: []
      - sessionToken: []
        dwAppKey: []
    get:
      tags:
      - Beneficiaries
      parameters:
      - in: path
        name: accountID
        schema:
          $ref: '#/components/schemas/accountID'
        required: true
      summary: Retrieve Account Beneficiaries
      description: Retrieves a list of Account Beneficiaries by accountID.
      responses:
        '200':
          description: Retrieving a list of Account Beneficiaries was Successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BeneficiaryRes'
      security:
      - bearerAuth: []
        dwAppKey: []
      - sessionToken: []
        dwAppKey: []
    delete:
      tags:
      - Beneficiaries
      parameters:
      - in: path
        name: accountID
        schema:
          $ref: '#/components/schemas/accountID'
        required: true
      summary: Delete Account Beneficiaries
      description: Removes all Accounts Beneficiaries by accountID.
      responses:
        '202':
          description: Removing all Account Beneficiaries was Accepted.
      security:
      - bearerAuth: []
        dwAppKey: []
      - sessionToken: []
        dwAppKey: []
components:
  schemas:
    accountID:
      type: string
      example: cc07f91b-7ee1-4868-b8fc-823c70a1b932.1407775317759
      description: The user's unique account identifier.
    BeneficiaryReq:
      type: object
      properties:
        primary:
          type: array
          description: An array of objects containing the primary beneficiary details
          items:
            oneOf:
            - $ref: '#/components/schemas/beneficiariesObject'
        contingent:
          type: array
          description: An array of objects containing the contingent beneficiary details.
          items:
            oneOf:
            - $ref: '#/components/schemas/beneficiariesObject'
    BeneficiaryRes:
      type: object
      properties:
        primary:
          type: array
          description: An array of objects containing the primary beneficiary details
          items:
            oneOf:
            - $ref: '#/components/schemas/beneficiariesObject'
        contingent:
          type: array
          description: An array of objects containing the contingent beneficiary details.
          items:
            oneOf:
            - $ref: '#/components/schemas/beneficiariesObject'
    beneficiariesObject:
      type: object
      description: An object containing the information of a beneficiary.
      properties:
        type:
          type: string
          example: ENTITY
          description: Type of beneficiary.
          enum:
          - PERSON
          - ENTITY
        name:
          $ref: '#/components/schemas/name'
        percentage:
          type: number
          example: '0.25'
          description: Percentage ownership beneficiary has in the account. Must total 1 (aka 100%) across all beneficiaries.
        email:
          type: string
          example: tom@ac.com
          description: The email of the entity.
        formationDate:
          type: string
          example: '2010-10-25'
          description: 'Entity formation date. Must follow the YYYY-MM-DD format. Only required if type: `ENTITY`.'
        primaryContact:
          type: string
          example: '5512478089'
          description: 'Primary phone contact of entity. Only required if type: `ENTITY`'
        phone:
          type: string
          example: '4153647890'
          description: Phone number of beneficiary.
        created:
          type: string
          example: '2022-12-29T18:32:15.533Z'
          description: The when the beneficiary was added to the account.
    name:
      type: string
      example: Tom Ace
      description: Full name or entity name of type.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    dwAppKey:
      type: apiKey
      in: header
      name: dw-client-app-key
    sessionToken:
      type: apiKey
      in: header
      name: dw-auth-token