创建 source 接口

接口概述

该接口用于在系统中已有的账户下,创建一个新的 Source。

  • 请求方式POST

  • 请求 URLhttps://openapi.elven.com/open/v3/transaction/source

请求头参数

参数名类型必填说明

elven-api-key

String

分配给您的API密钥

elven-api-sign

String

请求签名,用于验证请求合法性

elven-api-timestamp

String

请求时间戳,毫秒级

查看详细说明

请求参数

Body 参数(JSON 格式)

参数名类型必填说明

name

String

Source 名称

entityAccountId

String

Source 所属账户的主键 ID

请求示例

{
    "name": "MySource",
    "entityAccountId": "abc123"
}

响应参数

参数名类型说明

sourceId

String

Source 的主键 ID

name

String

Source 名称

entityAccountId

String

Source 所属账户的主键 ID

响应示例

{
    "sourceId": "def456",
    "name": "MySource",
    "entityAccountId": "abc123"
}

注意事项

  • 请求头中的 elven-api-keyelven-api-signelven-api-timestamp 为必填参数,用于验证请求的合法性和安全性。

  • nameentityAccountId 为必填参数,不能为空。

  • 创建成功后,系统将返回 sourceId,用于后续操作。

Last updated