Send a support message

Send a support message to the system. The message should include the wallet ID, title, and content.

POST

Parameters

Body

application/json
Id
REQUIRED
Unique identifier for the support message
Wallet_id
REQUIRED
Identifier of the wallet/user who created the support message
Content
REQUIRED
Main content body of the support message
Assets
Optional attachments or assets associated with the support message
When_modified
REQUIRED
Timestamp when the support message was last modified
When_created
REQUIRED
Timestamp when the support message was created
Status codeDescription
200Successfully created resource with its unique identifier
400Bad request error - the request contains invalid parameters or malformed data
500Internal server error - an unexpected error occurred on the server
cURL
curl -L -X POST \
"https://blockv-labs.io/support" \
-H 'Accept: application/json'
Response
{
"id": "string"
}
json
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the created resource"
}
}
}