Get a asset detailed informations.
GET/assets/:asset_id
Get a asset detailed informations.
Request
Path Parameters
asset_id stringrequired
Possible values: non-empty
The ID of the asset to retrieve.
Responses
- 200
- 404
A asset object
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
Possible values: non-empty
name string
Possible values: non-empty
BBAN string
Possible values: non-empty
Basic Bank Account Number.
IBAN string
Possible values: >= 3 characters
International Bank Account Number.
reference string
Possible values: non-empty
opened date-time
Date when the contract was opened
update
object
date date-time
Last date when the asset was updated
beneficiaries string[]
Possible values: non-empty
List of customers ids that are beneficiary of this asset.
{
"id": "string",
"name": "string",
"BBAN": "string",
"IBAN": "string",
"reference": "string",
"opened": "2025-01-29T13:45:13.349Z",
"update": {
"date": "2025-01-29T13:45:13.349Z"
},
"beneficiaries": [
"string"
]
}
The requested resource is not found.
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Resource not found"
}
Loading...