查询活动详情接口
商户创建活动后,可以通过该接口查询支付有礼的活动详情,用于管理活动。
请求参数 | 类型 | 描述 |
---|---|---|
activity_id | string | 活动id |
php
$instance->v3->marketing->paygiftactivity->activities->_activity_id_->getAsync([
'activity_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/marketing/paygiftactivity/activities/{activity_id}')->getAsync([
'activity_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/marketing/paygiftactivity/activities/{activity_id}']->getAsync([
'activity_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->marketing->paygiftactivity->activities->_activity_id_->get([
'activity_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/marketing/paygiftactivity/activities/{activity_id}')->get([
'activity_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/marketing/paygiftactivity/activities/{activity_id}']->get([
'activity_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
activity_id | string | |
activity_type | string | 活动类型FULL_SEND_ACT_TYPE | STEP_SEND_ACT_TYPE | SPECIFIC_SEND_ACT_TYPE 枚举值之一 |
activity_status | string | 活动状态CREATE_ACT_STATUS | ONGOING_ACT_STATUS | TERMINATE_ACT_STATUS | STOP_ACT_STATUS | OVER_TIME_ACT_STATUS | CREATE_ACT_FAILED 枚举值之一 |
creator_merchant_id | string | |
belong_merchant_id | string | |
pause_time | string | |
recovery_time | string | |
create_time | string | |
update_time | string | |
activity_base_info | object | |
activity_name | string | |
activity_second_title | string | |
merchant_logo_url | string | |
background_color | string | 背景颜色Color010 | Color020 | Color030 | Color040 | Color050 | Color060 | Color070 | Color080 | Color090 | Color100 枚举值之一 |
begin_time | string | |
end_time | string | |
available_periods | object | 可用时间段 |
available_time | object[] | |
begin_time | string | 可用开始时间 |
end_time | string | 可用结束时间 |
available_day_time | object[] | |
begin_day_time | string | 每日可用开始时间 |
end_day_time | string | 每日可用结束时间 |
out_request_no | string | 商户请求单号 |
delivery_purpose | string | 投放目的OFF_LINE_PAY | JUMP_MINI_APP 枚举值之一 |
mini_programs_appid | string | |
mini_programs_path | string | |
advanced_setting | object | |
delivery_user_category | string | 奖品类型BUSIFAVOR 枚举值 |
merchant_member_appid | string | |
payment_mode | object | |
payment_scene_list | string[] | APP_SCENE 枚举值 |
payment_method_information | object | |
payment_method | string | |
bank_abbreviation | string | |
goods_tags | string[] | |
award_send_rule | object | |
full_send_rule | object | |
award_type | string | 奖品类型BUSIFAVOR 枚举值 |
merchant_option | string | 发券商户号选项IN_SEVICE_COUPON_MERCHANT | MANUAL_INPUT_MERCHANT 枚举值之一 |
transaction_amount_minimum | integer | |
send_content | string | 发放内容SINGLE_COUPON | GIFT_PACKAGE 枚举值之一 |
award_list | object[] | |
stock_id | string | |
original_image_url | string | |
thumbnail_url | string | |
step_send_rule | object | |
award_type | string | 奖品类型BUSIFAVOR 枚举值 |
merchant_option | string | 发券商户号选项IN_SEVICE_COUPON_MERCHANT | MANUAL_INPUT_MERCHANT 枚举值之一 |
参阅 官方文档