- 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
Updating Security Token
PUT
/v1/asset/securitytoken
Assetyzer
Last modified:2025-05-08 10:58:16
Request
Header Params
X-Neucron-App-ID
string
optional
X-Neucron-Team-ID
string
optional
Body Params application/json
addresses
array[string]
optional
asset_id
string
optional
asset_name
string
optional
emails
array[string]
optional
expires_at
string <date>
optional
Example:
2025-12-31T00:00:00Z
image_url
string
optional
legal_term
string
optional
paymails
array[string]
optional
protocol
enum<string>
optional
Allowed values:
STAS-20STAS-789STAS-50STAS-LEGACYNULL
signature_required
integer
optional
symbol
string
optional
tokenDetail
object
optional
Additional properties
integer | number | string | boolean
optional
total_supply
integer
optional
wallet_id
string
optional
Example
{
"addresses": [
"string"
],
"asset_id": "string",
"asset_name": "string",
"emails": [
"string"
],
"expires_at": "2025-12-31T00:00:00Z",
"image_url": "string",
"legal_term": "string",
"paymails": [
"string"
],
"protocol": "STAS-20",
"signature_required": 0,
"symbol": "string",
"tokenDetail": {
"property1": null,
"property2": null
},
"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/securitytoken' \
--header 'Content-Type: application/json' \
--data-raw '{
"addresses": [
"string"
],
"asset_id": "string",
"asset_name": "string",
"emails": [
"string"
],
"expires_at": "2025-12-31T00:00:00Z",
"image_url": "string",
"legal_term": "string",
"paymails": [
"string"
],
"protocol": "STAS-20",
"signature_required": 0,
"symbol": "string",
"tokenDetail": {
"property1": null,
"property2": null
},
"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