增发 MT
POST
/v1beta1/mt/mt-mints/{class_id}/{mt_id}MT 类别的 owner 通过调用此接口增发某一确定 ID 的 MT。
- 当不填写接收者时,默认该类别的拥有者为接收者;
- 当不填写增发数量时,默认增发数量为 1。
请求参数
Path 参数
class_id
string
MT 的类别 ID
mt_id
string
MT 的 ID
Header 参数
Content-Type
string
必需
固定值:application/json
X-Api-Key
string
必需
项目 API Key,用于 API 访问鉴权
X-Timestamp
string
必需
时间戳,1970年1月1日0点0分0秒到现在的毫秒数
X-Signature
string
必需
API 签名,算法为SHA256(Params+Timestamp+ApiSecret)
Body 参数application/json
amount
integer
MT 数量
recipient
string
MT 接收者地址
<= 128 字符
operation_id
string
必需
操作 ID,保证幂等性,避免重复请求,保证对于同一操作发起的一次请求或者多次请求的结果是一致的;由接入方生成的、针对每个 Project ID 唯一的、不超过 64 个大小写字母、数字、-、下划线的字符串
>= 1 字符<= 64 字符
正则匹配:
^[a-zA-Z0-9_-]+$
示例
{
"amount": 0,
"recipient": "string",
"operation_id": "string"
}
示例代码
返回响应
successful operation(200)
successful operation
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
data
object
正确返回值
operation_id
string
操作 ID
<= 64 字符
示例
{
"data": {
"operation_id": "string"
}
}
最后修改时间: 1 年前