You need to enable JavaScript to run this app.
导航
查询卡券库卡券信息
最近更新时间:2024.11.15 11:15:19首次发布时间:2024.11.15 11:15:19

您可通过此接口,根据卡券 ID 或关联卡券 ID,查询卡券库中的指定卡券信息。

注意事项

请求频率:单用户请求频率限制为 10 次/秒

请求说明

  • 请求方式:GET
  • 请求地址:https://livesaas.volcengineapi.com/?Action=GetCoupon&Version=2023-08-01

请求参数

下表仅列出该接口特有的请求参数和部分公共参数。更多信息详见公共参数

Query

参数类型是否必选示例值描述
ActionStringGetCoupon接口名称。当前 API 的名称为 GetCoupon
VersionString2023-08-01接口版本。当前 API 的版本为 2023-08-01

Id

Long

1823****3443

卡券 ID。您可通过调用 ListCoupons 接口获取 ID。

说明

IdThirdPartyId 至少需要传一个,且同时传入时,Id 的优先级更高。

ThirdPartyId

String

uuid1

关联卡券 ID,即您自有商城系统中的卡券 ID。

说明

IdThirdPartyId 至少需要传一个,且同时传入时,Id 的优先级更高。

返回参数

参数类型示例值描述
CouponsArray of Coupons-查询到的卡券列表。

Coupons

参数类型示例值描述
IdLong1823****3443卡券 ID。
NameString手机优惠券卡券名称。
DescriptionString满 500 减 50卡券描述。

ThirdPartyId

String

uuid1

关联卡券 ID,即您自有商城系统中的卡券 ID。
通过该 ID,可将当前卡券绑定您商城系统中的卡券,方便后续卡券的发放以及在商城内的核销。

PicStringhttps://www.example.com/a.png卡券图片的 URL,包含协议头。

请求示例

GET https://livesaas.volcengineapi.com/?Action=GetCoupon&Version=2023-08-01&Id=1823****3443

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20230604110420****100232280022D31",
        "Action": "GetCoupon",
        "Version": "2023-08-01",
        "Service": "livesaas",
        "Region": "cn-north-1",
        "SystemTime": 1685969459
    },
    "Result": {
        "Coupons": [
            {
                "Id": 1823****3443,
                "Name": "手机优惠券",
                "Description": "满 500 减 50",
                "ThirdPartyId": "uuid1",
                "Pic": "https://www.example.com/a.png"
            }
        ]
    }
}

错误码

访问公共错误码错误码获取详细信息。