基础档案类

    currency/get


    目录

    1.接口说明

    1.1接口描述

         获取单个币种

    1.2适用版本

         支持U8V12.0 及更高版本

    2.使用场景

    基础数据同步或前端展示

    3.接口调用说明

    3.1请求说明

    url https://api.yonyouup.com/api/currency/get
    格式 JSON
    https请求方式 GET


    3.2url参数说明

    参数 是否必填 类型 描述
    from_account sting 调用方id
    to_account string 提供方id
    app_key string 应用编码
    token string 全局访问唯一识别码
    ds_sequence number 数据源序号(默认取应用的第一个数据源)
    id number 自动编号

    3.3请求示例

    GET https://api.yonyouup.com/api/currency/get?from_account=openapi_dev&to_account=openapi_ent&app_key=opa6fdd4bea98b95ad7&token=26d2fc4a06844448957a7f8260f3d08b&id=xxxxx


    3.4返回参数说明

    参数说明 类型 参数路径 描述
    errcode string   错误码,0 为正常。
    errmsg string   错误信息。
    cexch_name string 币种名称
    cexch_code string 币种编码
    iotherused number 是否本位币(-1:是 0:否)
    bcal boolean 折算方式
    idec number 小数位数
    nerror number 最大误差
    timestamp number 时间戳

    3.5正确返回示例

    JSON示例:

    application/json;charset=UTF-8
    {
    	"errcode":"0",
    	"errmsg":"",
    	"currency":{
    		"iotherused":"-1",
    		"cexch_code":"RMB",
    		"cexch_name":"人民币"
    	}
    }
    

    3.6错误返回示例

    application/json;charset=UTF-8
    {
    	"errcode":"30021",
    	"errmsg":"此应用未上线"
    } 

    4.API测试

    API测试 SDK下载