All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.felord.api.CustomerAcquisitionApi Maven / Gradle / Ivy

There is a newer version: 1.2.8
Show newest version
/*
 *  Copyright (c) 2023. felord.cn
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *       https://www.apache.org/licenses/LICENSE-2.0
 *  Website:
 *       https://felord.cn
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package cn.felord.api;

import cn.felord.WeComException;
import cn.felord.domain.GenericResponse;
import cn.felord.domain.WeComResponse;
import cn.felord.domain.common.PageRequest;
import cn.felord.domain.externalcontact.*;
import retrofit2.http.Body;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Query;

import java.time.Instant;

/**
 * 获客助手
 *
 * @author dax
 * @since 2024/5/30 21:28
 */
public interface CustomerAcquisitionApi {

    /**
     * 获取获客链接列表
     *
     * @param request the request
     * @return the follow user list
     * @throws WeComException the weComException
     */
    @POST("externalcontact/customer_acquisition/list_link")
    LinksResponse listLink(@Body PageRequest request) throws WeComException;

    /**
     * 获取获客链接详情
     *
     * @param linkId the link id
     * @return the we com response
     * @throws WeComException the weComException
     */
    @POST("externalcontact/customer_acquisition/get")
    LinkDetailResponse get(@Body LinkId linkId) throws WeComException;

    /**
     * 创建获客链接
     *
     * @param request the request
     * @return the we com response
     * @throws WeComException the weComException
     */
    @POST("externalcontact/customer_acquisition/create_link")
    GenericResponse createLink(@Body AcquisitionLinkCreateRequest request) throws WeComException;

    /**
     * 编辑获客链接
     *
     * @param request the request
     * @return the we com response
     * @throws WeComException the weComException
     */
    @POST("externalcontact/customer_acquisition/update_link")
    WeComResponse updateLink(@Body AcquisitionLinkUpdateRequest request) throws WeComException;

    /**
     * 删除获客链接
     *
     * @param linkId the link id
     * @return the we com response
     * @throws WeComException the weComException
     */
    @POST("externalcontact/customer_acquisition/delete_link")
    WeComResponse deleteLink(@Body LinkId linkId) throws WeComException;

    /**
     * 获取由获客链接添加的客户信息
     *
     * @param request the request
     * @return the we com response
     * @throws WeComException the weComException
     */
    @POST("externalcontact/customer_acquisition/customer")
    LinkCustomersResponse queryLinkCustomers(@Body LinkPageRequest request) throws WeComException;

    /**
     * 查询获客链接剩余使用量
     *
     * @return the we com response
     * @throws WeComException the weComException
     */
    @GET("externalcontact/customer_acquisition_quota")
    AcquisitionQuotaResponse customerAcquisitionQuota() throws WeComException;

    /**
     * 查询链接使用详情
     * 

* 企业可通过此接口查询指定获客链接在指定时间范围内的访问情况。 * * @param linkId the link id * @param startTime the start time * @param endTime the end time * @return the link statistic response * @throws WeComException the weComException */ @GET("externalcontact/customer_acquisition/statistic") LinkStatisticResponse queryCustomerAcquisitionQuotas(@Query("link_id") String linkId, @Query("start_time") Instant startTime, @Query("end_time") Instant endTime) throws WeComException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy