Skip to content

Upvest Investment API (1.75.0)

Upvest Investment API.

Download OpenAPI description
Overview
URL

https://docs.upvest.co

Upvest API Support

api@upvest.co

License

Apache 2.0

Languages
Servers
Sandbox environment

https://sandbox.upvest.co/

Live environment

https://api.upvest.co/

Access Tokens

All authentication related paths.

Operations
OperationsWebhooks

User Identifiers

All user identifiers related paths.

Operations

User Checks

All user checks related paths.

OperationsWebhooks

Accounts

All accounts related paths

OperationsWebhooks

Account Groups

All account groups related paths

OperationsWebhooks

Tax Residencies

All tax residencies related paths.

Operations

Corporate Actions

All Corporate Action related paths.

Webhooks

Tax Exemptions

All tax exemptions related paths

OperationsWebhooks

Tax Collections

All tax collections related paths

Webhooks

Tax Wrappers

All tax wrappers related paths

OperationsWebhooks

Instruments

All instrument related paths.

OperationsWebhooks

Price Data

All price data related paths.

Operations
OperationsWebhooks

Portfolios

All portfolios related paths.

Operations

Portfolios Rebalancing

All portfolios rebalancing related paths.

OperationsWebhooks

Savings Plans

All savings plans related paths.

OperationsWebhooks

Liquidations

All accounts liquidations related paths.

OperationsWebhooks

Direct Debits

All direct debits related paths

OperationsWebhooks
OperationsWebhooks

Withdrawals

All withdrawals related paths

OperationsWebhooks

Reference Accounts

All reference account related paths

Operations

Mandates

All direct debit mandates related paths

Operations

Cash Balances

All cash balance related paths

OperationsWebhooks

Positions

All positions related paths.

OperationsWebhooks

Valuations

All valuations related paths.

OperationsWebhooks

Returns

All accounts returns related paths.

OperationsWebhooks

Virtual Cash Balances

All virtual cash balances related paths

OperationsWebhooks
OperationsWebhooks

Fees Configurations

All fees configurations related paths.

Operations
OperationsWebhooks

Treasury Reports

All treasury reports related paths.

Webhooks

Transactions

All transactions related paths.

OperationsWebhooks
Operations

Webhook Subscriptions

All webhook subscriptions related paths.

Operations

Request

Returns a webhook subscription specified by its ID.

Security
oauth-client-credentials
Path
webhook_idstring(uuid)required

Webhook identifier

Headers
upvest-client-idstring(uuid)required

Tenant Client ID

Example: ebabcf4d-61c3-4942-875c-e265a7c2d062
authorizationstring^Bearer [a-zA-Z0-9\-\._~+/]*=*required

Bearer (access) token from the OAuth flow with correct scopes. https://datatracker.ietf.org/doc/html/rfc6750

Example: Bearer c2VjcmV0Cg==
signaturestringrequired

https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-http-header

signature-inputstringrequired

https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-input-http-he

upvest-api-versionstring

Upvest API version (Note: Do not include quotation marks)

Default 1
Value"1"
Example: 1
curl -i -X GET \
  'https://sandbox.upvest.co/webhooks/{webhook_id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'authorization: Bearer c2VjcmV0Cg==' \
  -H 'signature: string' \
  -H 'signature-input: string' \
  -H 'upvest-api-version: 1' \
  -H 'upvest-client-id: ebabcf4d-61c3-4942-875c-e265a7c2d062'

Responses

Returns a webhook subscription object if a valid webhook subscription object ID was provided.

Headers
upvest-request-idstring(uuid)required
Example: "169ae4c7-ebd7-4041-94da-25369653eba7"
Bodyapplication/json
idstring(uuid)required

Webhook unique identifier.

created_atstring(date-time)required

Date and time when the resource was created. RFC 3339-5, ISO8601 UTC

updated_atstring(date-time)required

Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC

titlestring^[a-zA-Z0-9 ()\[\]{}.-]{1,32}$required

Title of the webhook for use on tenant side.

urlstring(url)<= 1000 charactersrequired

The callback URL to be called by the webhook.

enabledbooleanrequired

Enable/disable webhook.

typeArray of stringsrequired

What kind of events to be sent by the webhook.

Default ["ALL"]
Items Enum"ALL""USER""USER_CHECK""ORDER""ORDER_CANCELLATION""EXECUTION""POSITION""CASH_BALANCE""ACCOUNT""ACCOUNT_GROUP"
configobjectrequired

Configuration of webhook packages collection.

delaystring^([1-9]|[12][0-9]|30)s$

Maximum time of package collection (1s-30s).

max_package_sizeinteger[ 100 .. 1048576 ]

Maximum package size (bytes)

Response
application/json
{ "id": "a8eb3540-5a84-40f9-b2bb-7f99f282fc5a", "created_at": "2021-07-21T14:10:00.00Z", "updated_at": "2021-07-21T14:10:00.00Z", "title": "User webhook", "url": "https://tenant.tld/webhooks/users", "type": [ "USER" ], "enabled": true, "config": { "delay": "5s", "max_package_size": 1024 } }

Request

Deletes a webhook subscription specified by its ID.

Security
oauth-client-credentials
Path
webhook_idstring(uuid)required

Webhook identifier

Headers
upvest-client-idstring(uuid)required

Tenant Client ID

Example: ebabcf4d-61c3-4942-875c-e265a7c2d062
authorizationstring^Bearer [a-zA-Z0-9\-\._~+/]*=*required

Bearer (access) token from the OAuth flow with correct scopes. https://datatracker.ietf.org/doc/html/rfc6750

Example: Bearer c2VjcmV0Cg==
signaturestringrequired

https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-http-header

signature-inputstringrequired

https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-input-http-he

upvest-api-versionstring

Upvest API version (Note: Do not include quotation marks)

Default 1
Value"1"
Example: 1
curl -i -X DELETE \
  'https://sandbox.upvest.co/webhooks/{webhook_id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'authorization: Bearer c2VjcmV0Cg==' \
  -H 'signature: string' \
  -H 'signature-input: string' \
  -H 'upvest-api-version: 1' \
  -H 'upvest-client-id: ebabcf4d-61c3-4942-875c-e265a7c2d062'

Responses

Request has been processed successfully.

Headers
upvest-request-idstring(uuid)required
Example: "169ae4c7-ebd7-4041-94da-25369653eba7"
Response
No content

Request

Updates a webhook subscription specified by its ID.

Security
oauth-client-credentials
Path
webhook_idstring(uuid)required

Webhook identifier

Headers
upvest-client-idstring(uuid)required

Tenant Client ID

Example: ebabcf4d-61c3-4942-875c-e265a7c2d062
authorizationstring^Bearer [a-zA-Z0-9\-\._~+/]*=*required

Bearer (access) token from the OAuth flow with correct scopes. https://datatracker.ietf.org/doc/html/rfc6750

Example: Bearer c2VjcmV0Cg==
signaturestringrequired

https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-http-header

signature-inputstringrequired

https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-input-http-he

upvest-api-versionstring

Upvest API version (Note: Do not include quotation marks)

Default 1
Value"1"
Example: 1
Bodyapplication/json
titlestring^[a-zA-Z0-9 ()\[\]{}.-]{1,32}$

Title of the webhook for use on tenant side.

urlstring(url)<= 1000 characters

The callback URL to be called by the webhook.

enabledboolean

Enable/disable webhook.

typeArray of strings

What kind of events to be sent by the webhook.

Default ["ALL"]
Items Enum"ALL""USER""USER_CHECK""ORDER""ORDER_CANCELLATION""EXECUTION""POSITION""CASH_BALANCE""ACCOUNT""ACCOUNT_GROUP"
configobject

Configuration of webhook packages collection.

curl -i -X PATCH \
  'https://sandbox.upvest.co/webhooks/{webhook_id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'authorization: Bearer c2VjcmV0Cg==' \
  -H 'signature: string' \
  -H 'signature-input: string' \
  -H 'upvest-api-version: 1' \
  -H 'upvest-client-id: ebabcf4d-61c3-4942-875c-e265a7c2d062' \
  -d '{
    "url": "https://tenant.tld/webhooks/users",
    "type": [
      "USER"
    ]
  }'

Responses

Returns a webhook subscription object if a valid webhook subscription object ID was provided.

Headers
upvest-request-idstring(uuid)required
Example: "169ae4c7-ebd7-4041-94da-25369653eba7"
Bodyapplication/json
idstring(uuid)required

Webhook unique identifier.

created_atstring(date-time)required

Date and time when the resource was created. RFC 3339-5, ISO8601 UTC

updated_atstring(date-time)required

Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC

titlestring^[a-zA-Z0-9 ()\[\]{}.-]{1,32}$required

Title of the webhook for use on tenant side.

urlstring(url)<= 1000 charactersrequired

The callback URL to be called by the webhook.

enabledbooleanrequired

Enable/disable webhook.

typeArray of stringsrequired

What kind of events to be sent by the webhook.

Default ["ALL"]
Items Enum"ALL""USER""USER_CHECK""ORDER""ORDER_CANCELLATION""EXECUTION""POSITION""CASH_BALANCE""ACCOUNT""ACCOUNT_GROUP"
configobjectrequired

Configuration of webhook packages collection.

delaystring^([1-9]|[12][0-9]|30)s$

Maximum time of package collection (1s-30s).

max_package_sizeinteger[ 100 .. 1048576 ]

Maximum package size (bytes)

Response
application/json
{ "id": "a8eb3540-5a84-40f9-b2bb-7f99f282fc5a", "created_at": "2021-07-21T14:10:00.00Z", "updated_at": "2021-07-21T14:10:00.00Z", "title": "User webhook", "url": "https://tenant.tld/webhooks/users", "type": [ "USER" ], "enabled": true, "config": { "delay": "1s", "max_package_size": 51200 } }

Virtual Bank Accounts

All virtual bank accounts related paths

OperationsWebhooks
Operations