Asset Management
Asset
This API endpoint allows you to fetch detailed information about a specific asset. By providing the asset name, you can access asset attributes, metadata, and relevant data.
GET
/
omni-omni
/
v1
/
assets
/
{name}
curl --request GET \
--url https://backend.sandbox.ecrop.de/ecrop-command/omni-omni/v1/assets/{name} \
--header 'Authorization: Bearer <token>'
{
"assetType": "BEARER_BOND",
"clientToken": "<string>",
"clientWebhook": "<string>",
"description": "<string>",
"emailBody": "<string>",
"emailSubject": "<string>",
"entryType": "SINGLE",
"essentialContentOfRight": "<string>",
"eventualRightOfThirdParties": "<string>",
"extraOrdinaryTerminationRights": "<string>",
"files": [
{
"description": "<string>",
"fileType": "PICTURE",
"id": 123,
"title": "<string>",
"url": "<string>"
}
],
"individualShare": true,
"interestCalculationMethod": "<string>",
"interestPayBackDate": "2023-11-07T05:31:56Z",
"interestRate": 123,
"investmentCondition": "<string>",
"isin": "<string>",
"key": "<string>",
"loanPayBackDate": "2023-11-07T05:31:56Z",
"mark": "<string>",
"name": "<string>",
"numberOfVotingRight": 123,
"ordinaryTerminationRights": "<string>",
"ownerEmail": "<string>",
"quantity": 123,
"restrictedShare": true,
"restrictionsOnBehalfOfThirdParties": "<string>",
"signingEndDate": "2023-11-07T05:31:56Z",
"signingStartDate": "2023-11-07T05:31:56Z",
"status": "INACTIVE",
"subordinationAgreement": "<string>",
"valuePerShare": 123,
"webhookResult": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Asset retrieved
The response is of type object
.
curl --request GET \
--url https://backend.sandbox.ecrop.de/ecrop-command/omni-omni/v1/assets/{name} \
--header 'Authorization: Bearer <token>'
{
"assetType": "BEARER_BOND",
"clientToken": "<string>",
"clientWebhook": "<string>",
"description": "<string>",
"emailBody": "<string>",
"emailSubject": "<string>",
"entryType": "SINGLE",
"essentialContentOfRight": "<string>",
"eventualRightOfThirdParties": "<string>",
"extraOrdinaryTerminationRights": "<string>",
"files": [
{
"description": "<string>",
"fileType": "PICTURE",
"id": 123,
"title": "<string>",
"url": "<string>"
}
],
"individualShare": true,
"interestCalculationMethod": "<string>",
"interestPayBackDate": "2023-11-07T05:31:56Z",
"interestRate": 123,
"investmentCondition": "<string>",
"isin": "<string>",
"key": "<string>",
"loanPayBackDate": "2023-11-07T05:31:56Z",
"mark": "<string>",
"name": "<string>",
"numberOfVotingRight": 123,
"ordinaryTerminationRights": "<string>",
"ownerEmail": "<string>",
"quantity": 123,
"restrictedShare": true,
"restrictionsOnBehalfOfThirdParties": "<string>",
"signingEndDate": "2023-11-07T05:31:56Z",
"signingStartDate": "2023-11-07T05:31:56Z",
"status": "INACTIVE",
"subordinationAgreement": "<string>",
"valuePerShare": 123,
"webhookResult": "<string>"
}