VUMI Documentation
  • Introduction
    • 🎉Welcome!
    • ➡️Quick Start
  • Platform
    • App Overview
      • API Products
      • Connections Overview
      • API Configuration
    • Link Overview
      • Link redirects
      • Link parameters
      • Customization
  • General API Resources
    • Authentication
      • API Login
      • Link authentication
    • Entities
      • List entities for app
    • Connections
      • Exchange public token
      • Get Connection status
      • List all connections
      • List public tokens
      • Delete Connection
    • Investments
      • List investments
    • Webhook
      • Get verification key
  • Aggregation API
    • Accounts
      • List accounts
      • List account transactions
    • Portfolios
      • List portfolios
      • List portfolio transactions
      • List portfolio positions
  • Assets Transfer API
    • Assets transfer
  • Developer Resources
    • API and Widget Errors
    • Webhooks and security
      • Webhook verification
    • Pagination
    • Tracing requests
Powered by GitBook
On this page
  1. Assets Transfer API

Assets transfer

Last updated 1 day ago

Returns the information of an assets transfer completed by a user through the Finlink Link. This endpoint will return the assets transfer orders that the final user has completed the information for.

List assets transfer orders performed by a user during an assets transfer flow

get

Retrieve all assets transfer orders performed by a user during an assets transfer flow for a given connection if it belongs to the current app

Authorizations
Path parameters
tokenstringRequired

Token to identify the connection

Responses
200
Successfully retrieved assets transfer orders
application/json
401
Invalid credentials
application/json
404
Connection not found with the given token for the current app
application/json
500
Internal server error
application/json
get
GET /api/v1/queries/connections/{token}/assets-transfer HTTP/1.1
Host: api.finlink.vumi.io
Authorization: Bearer JWT
Accept: */*
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "portfolio": "text",
    "investment": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Fondo de prueba 1",
    "isin": "ES0000000000",
    "currency": "EUR",
    "assetType": "FUND",
    "titles": 0.50338,
    "amount": 12.29,
    "total": true,
    "marketer": {
      "name": "Renta 4",
      "cif": "A82473018"
    },
    "managementCompany": {
      "name": "Vumi Portfolio SL",
      "cif": "A00000000"
    }
  }
]