Upvest Investment API.
- Get fee collections
Upvest Investment API (1.75.0)
https://sandbox.upvest.co/
https://api.upvest.co/
Filters the list to show only fees associated with a specific account ID.
Filters the list to show only fees associated with a specific account group ID.
Field of resource to sort by.
Sort order of the result list if the sort
parameter is specified. Use ASC
for ascending or DESC
for descending sort order.
Use the offset
argument to specify where in the list of results to start when returning items for a particular query.
Bearer (access) token from the OAuth flow with correct scopes. https://datatracker.ietf.org/doc/html/rfc6750
https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-http-header
https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-input-http-he
- Sandbox environment
https://sandbox.upvest.co/fees/collections
- Live environment
https://api.upvest.co/fees/collections
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://sandbox.upvest.co/fees/collections?account_id=413715f2-5401-4b97-8055-034a6b879f8c&account_group_id=72da9e41-9926-419f-976e-4c8069a04249&sort=created_at&order=ASC&offset=0&limit=100' \
-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'
OK
Type of the fee collection
- SERVICE_FEE - Service fee intake in a pre-defined cadence (e.g. monthly)
- SERVICE_FEE_LIQUIDATION - Service fee intake as a result of a Portfolio liquidation
Status of the fee collection
- PROCESSING - Fee collection is in progress.
- FINALISED - Fees have been collected from the account and the funds has been transferred to the client.
- CANCELLED - Fee collection has been cancelled.
Start date of the fee collection period in YYYY-MM-DD format. RFC 3339, section 5.6 RFC 3339
End date of the fee collection period in YYYY-MM-DD format. RFC 3339, section 5.6 RFC 3339
Date and time when the resource was created. RFC 3339-5, ISO8601 UTC
Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC
{ "meta": { "offset": 0, "limit": 100, "count": 3, "total_count": 3, "sort": "id", "order": "ASC" }, "data": [ { … }, { … }, { … } ] }
Bearer (access) token from the OAuth flow with correct scopes. https://datatracker.ietf.org/doc/html/rfc6750
https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-http-header
https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-input-http-he
A UUID to be used as an idempotency key. This prevents a duplicate request from being replayed. https://docs.upvest.co/documentation/concepts/api_concepts/idempotency
Type of the fee collection
- SERVICE_FEE - Service fee intake in a pre-defined cadence (e.g. monthly)
- SERVICE_FEE_LIQUIDATION - Service fee intake as a result of a Portfolio liquidation
Start date of the fee collection period in YYYY-MM-DD format. RFC 3339, section 5.6 RFC 3339
End date of the fee collection period in YYYY-MM-DD format. RFC 3339, section 5.6 RFC 3339
- Sandbox environment
https://sandbox.upvest.co/fees/collections
- Live environment
https://api.upvest.co/fees/collections
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://sandbox.upvest.co/fees/collections \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'authorization: Bearer c2VjcmV0Cg==' \
-H 'idempotency-key: ccb07f42-4104-44ad-8e1f-c660bb7b269c' \
-H 'signature: string' \
-H 'signature-input: string' \
-H 'upvest-api-version: 1' \
-H 'upvest-client-id: ebabcf4d-61c3-4942-875c-e265a7c2d062' \
-d '{
"account_id": "689f7566-2ca3-4007-b99d-e501be8c7783",
"type": "SERVICE_FEE",
"collection_amount": "12.41",
"currency": "EUR",
"period_start": "2022-11-01",
"period_end": "2022-11-30"
}'
Fee collection created.
Type of the fee collection
- SERVICE_FEE - Service fee intake in a pre-defined cadence (e.g. monthly)
- SERVICE_FEE_LIQUIDATION - Service fee intake as a result of a Portfolio liquidation
Status of the fee collection
- PROCESSING - Fee collection is in progress.
- FINALISED - Fees have been collected from the account and the funds has been transferred to the client.
- CANCELLED - Fee collection has been cancelled.
Start date of the fee collection period in YYYY-MM-DD format. RFC 3339, section 5.6 RFC 3339
End date of the fee collection period in YYYY-MM-DD format. RFC 3339, section 5.6 RFC 3339
Date and time when the resource was created. RFC 3339-5, ISO8601 UTC
Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC
{ "id": "d77e6924-9bb7-4db0-addc-404442258f4b", "created_at": "2022-11-30T14:16:22Z", "updated_at": "2022-11-30T14:16:22Z", "account_id": "689f7566-2ca3-4007-b99d-e501be8c7783", "account_group_id": "999f7566-2ca3-4007-b99d-e501be8c7222", "type": "SERVICE_FEE", "collection_amount": "12.41", "processed_amount": { "cash_balance": "6.50", "sell_to_cover": "0" }, "currency": "EUR", "status": "PROCESSING", "period_start": "2022-11-01", "period_end": "2022-11-30" }
Bearer (access) token from the OAuth flow with correct scopes. https://datatracker.ietf.org/doc/html/rfc6750
https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-http-header
https://tools.ietf.org/id/draft-ietf-httpbis-message-signatures-01.html#name-the-signature-input-http-he
- Sandbox environment
https://sandbox.upvest.co/fees/collections/{fee_collection_id}
- Live environment
https://api.upvest.co/fees/collections/{fee_collection_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://sandbox.upvest.co/fees/collections/{fee_collection_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'
OK
Type of the fee collection
- SERVICE_FEE - Service fee intake in a pre-defined cadence (e.g. monthly)
- SERVICE_FEE_LIQUIDATION - Service fee intake as a result of a Portfolio liquidation
Status of the fee collection
- PROCESSING - Fee collection is in progress.
- FINALISED - Fees have been collected from the account and the funds has been transferred to the client.
- CANCELLED - Fee collection has been cancelled.
Start date of the fee collection period in YYYY-MM-DD format. RFC 3339, section 5.6 RFC 3339
End date of the fee collection period in YYYY-MM-DD format. RFC 3339, section 5.6 RFC 3339
Date and time when the resource was created. RFC 3339-5, ISO8601 UTC
Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC
{ "id": "d77e6924-9bb7-4db0-addc-404442258f4b", "created_at": "2022-11-30T14:16:22Z", "updated_at": "2022-11-30T14:16:22Z", "account_id": "689f7566-2ca3-4007-b99d-e501be8c7783", "account_group_id": "999f7566-2ca3-4007-b99d-e501be8c7222", "type": "SERVICE_FEE", "collection_amount": "12.41", "processed_amount": { "cash_balance": "6.50", "sell_to_cover": "0" }, "currency": "EUR", "status": "PROCESSING", "period_start": "2022-11-01", "period_end": "2022-11-30" }