- Neucron
- Admin
- App
- Assetyzer
- Get AllAsset of current user
- Update Certificate
- Register Certificate
- Get Certificate Details
- Mint Certificate
- Deleting Asset
- Deploy Asset
- Get Asset Details
- Data Integrity
- Issue Asset
- Get AssetLedger Details
- Get AllAssetLedgers of current user
- Merge Asset
- Mint Asset
- Redeem Asset
- Register Asset
- Updating Security Token
- Register Security Token
- Get Asset stats
- Sync MNEE token
- Data Integrity For Text
- Transfer Asset
- Updating Asset
- Get All Utility Token
- Assetyzer Business
- Auth
- Invoice
- Notification
- Pay
- Team
- Templates
- Wallet
Raise Invoice to any user
POST
/v1/invoice/raise
Invoice
Last modified:2025-05-08 10:58:16
Request
Header Params
X-Neucron-App-ID
string
optional
X-Neucron-Key-ID
string
optional
X-Neucron-Key-Secret
string
optional
X-Neucron-TeamID
string
optional
Body Params application/json
bsv_asset
object (invoicemodel.BSVAsset)
optional
amount
integer
optional
expires_in
integer
optional
failure_url
string
optional
long_description
string
optional
memo
string
optional
payer_address
string
optional
receiver_address
string
optional
security_token
object (invoicemodel.SecurityTokenAsset)
optional
amount
integer
optional
asset_id
string
optional
short_description
string
optional
success_url
string
optional
title
string
optional
type
enum<string>
optional
Allowed values:
bsvsecurity_token
wallet_id
string
optional
Example
{
"bsv_asset": {
"amount": 0
},
"expires_in": 0,
"failure_url": "string",
"long_description": "string",
"memo": "string",
"payer_address": "string",
"receiver_address": "string",
"security_token": {
"amount": 0,
"asset_id": "string"
},
"short_description": "string",
"success_url": "string",
"title": "string",
"type": "bsv",
"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 POST '/v1/invoice/raise' \
--header 'Content-Type: application/json' \
--data-raw '{
"bsv_asset": {
"amount": 0
},
"expires_in": 0,
"failure_url": "string",
"long_description": "string",
"memo": "string",
"payer_address": "string",
"receiver_address": "string",
"security_token": {
"amount": 0,
"asset_id": "string"
},
"short_description": "string",
"success_url": "string",
"title": "string",
"type": "bsv",
"wallet_id": "string"
}'
Responses
🟢200OK
application/json
Body
Additional properties
integer | number | string | boolean
optional
Example
{}
🟠400Bad Request
🟠404Record Not Found
🔴500Server Error
Modified at 2025-05-08 10:58:16