像素

注意
专享
在请求API中,API密钥需要发送到Bearer key 获取API key.
列表

API接口:

GET
http://yin.biz/api/v1/pixels

请求示例:

curl --location --request GET 'http://yin.biz/api/v1/pixels' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
参数
类型
描述
search
可选 string
搜索查询
search_by
可选 string
搜索来源. 可选:名称 name 默认为:name.
type
可选 string
像素类型. 可选:adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, twitter
sort_by
可选 string
Sort by. 可选:Date created id, 名称 name 默认为:id.
sort
可选 string
排序. 可选:降序 desc, 升序 asc 默认为:desc.
per_page
可选 int
每页显示条数. 可选:10, 25, 50, 100 默认为:25.
示例

API接口:

GET
http://yin.biz/api/v1/pixels/{id}

请求示例:

curl --location --request GET 'http://yin.biz/api/v1/pixels/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
POST接口缩短

API接口:

POST
http://yin.biz/api/v1/pixels

请求示例:

curl --location --request POST 'http://yin.biz/api/v1/pixels' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}' \
--data-urlencode 'type={type}' \
--data-urlencode 'value={value}'
参数
类型
描述
name
必选 string
像素名称.
type
必选 string
像素类型. 可选:adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, twitter
value
必选 string
像素ID值
修改

API接口:

PUT PATCH
http://yin.biz/api/v1/pixels/{id}

请求示例:

curl --location --request PUT 'http://yin.biz/api/v1/pixels/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
参数
类型
描述
name
可选 string
像素名称.
type
可选 string
像素类型. 可选:adroll, bing, facebook, google-ads, google-analytics, google-tag-manager, linkedin, pinterest, quora, twitter
value
可选 string
像素ID值
删除

API接口:

DELETE
http://yin.biz/api/v1/pixels/{id}

请求示例:

curl --location --request DELETE 'http://yin.biz/api/v1/pixels/{id}' \
--header 'Authorization: Bearer {api_key}'