查询 source 接口

接口概述

该接口用于查询系统中的 Source 列表,支持分页查询。

  • 请求方式GET

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

请求头参数

参数名类型必填说明

elven-api-key

String

分配给您的API密钥

elven-api-sign

String

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

elven-api-timestamp

String

请求时间戳,毫秒级

查看详细说明

请求参数

Query 参数

参数名类型必填说明

page

Number

页码,为空视为1

limit

Number

每页条数,为空视为10

请求示例

GET https://openapi.elven.com/open/v3/transaction/source?page=1&limit=10

响应参数

参数名类型说明

total

Number

结果数量

list

Array

Source 列表

list 数组元素

参数名类型说明

sourceId

String

Source 的主键 ID

name

String

Source 名称

entityAccountId

String

Source 所属账户的主键 ID

响应示例

{
    "total": 100,
    "list": [
        {
            "sourceId": "xxx",
            "name": "Source1",
            "entityAccountId": "entityAccountId1"
        },
        {
            "sourceId": "yyy",
            "name": "Source2",
            "entityAccountId": "entityAccountId2"
        }
    ]
}

注意事项

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

  • pagelimit 参数为可选参数,不传递时默认返回第一页,每页 10 条数据。

  • 返回结果中的 list 数组包含 Source 的详细信息,每一项与创建 Source 接口的返回值格式一致。

Last updated