- Neucron
- Admin
- App
- Assetyzer
- Get AllAsset of current userGET
- Update CertificatePUT
- Register CertificatePOST
- Get Certificate DetailsGET
- Mint CertificatePOST
- Deleting AssetDELETE
- Deploy AssetPOST
- Get Asset DetailsGET
- Data IntegrityPOST
- Issue AssetPOST
- Get AssetLedger DetailsGET
- Get AllAssetLedgers of current userPOST
- Merge AssetPOST
- Mint AssetPOST
- Redeem AssetPOST
- Register AssetPOST
- Updating Security TokenPUT
- Register Security TokenPOST
- Get Asset statsGET
- Sync MNEE tokenGET
- Data Integrity For TextPOST
- Transfer AssetPOST
- Updating AssetPUT
- Get All Utility TokenGET
- Assetyzer Business
- Auth
- Invoice
- Notification
- Pay
- Team
- Templates
- Wallet
Update Certificate
PUT
/v1/asset/certificate
Assetyzer
Last modified:2025-05-08 10:58:16
Request
Body Params application/json
asset_id
string
optional
certificate_metadata
object (stasmodel.CertificateData)
optional
created_by
string
optional
department
string
optional
organization_name
string
optional
program
string
optional
project_name
string
optional
template
integer
optional
total_supply
integer
optional
wallet_id
string
optional
Example
{
"asset_id": "string",
"certificate_metadata": {
"created_by": "string",
"department": "string",
"organization_name": "string",
"program": "string",
"project_name": "string",
"template": 0
},
"total_supply": 0,
"wallet_id": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/v1/asset/certificate' \
--header 'Content-Type: application/json' \
--data-raw '{
"asset_id": "string",
"certificate_metadata": {
"created_by": "string",
"department": "string",
"organization_name": "string",
"program": "string",
"project_name": "string",
"template": 0
},
"total_supply": 0,
"wallet_id": "string"
}'
Responses
🟢200OK
application/json
Body
message
string
optional
Example
{
"message": "string"
}
🟠400Bad Request
🟠404Record Not Found
🔴500Server Error
Modified at 2025-05-08 10:58:16