需要 write_page 权限点。
更多权限点使用信息,请参考:
PUT https://{handle}.myshopline.com/admin/openapi/v20250601/store/page/customize.json
handle :店铺的唯一标识符,值为店铺域名的前缀。例如,域名为 open001.myshopline.com 的店铺,其 handleopen001
更新自定义页面(支持指定自定义路由)
请求头
  • Content-Type required
    字段值固定为application/json; charset=utf-8
  • Authorization string required
    资源的访问令牌。请参考 应用授权 获取访问令牌,然后将获取到的访问令牌以 Bearer 格式传入
    Example:
    Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw
请求体
  • reqobject
    请求参数
  • body_html string
    自定义页面的内容
    Example: "content of the page"
  • handle string
    自定义页面的handle,传null时不处理
    Example: "pagecustomUrl"
  • page_id string required
    自定义页面的id
    Example: "6515896407215317133"
  • published_at string
    发布时间,格式yyyy-MM-dd HH:mm
    Example: "2024-06-18 18:16:39.792"
  • published_status boolean
    是否发布,可选值:true(发布);false(未发布)
    Example: true
  • template_name string
    绑定的模版名称
    Example: "templates/page.html"
  • template_type integer
    模版类型,可选值:1(店铺);2(主题)
    Example: 1
  • title string
    标题,传null时不处理
    Example: "title"
  • updater string required
    更新人id
    Example: "3300003187"
  • url string
    自定义路由,最大512字符,eg:"/custom-url"
    Example: "/custom-url"
响应
更多状态码信息请参考 HTTP 状态码

响应头
  • traceId
    traceId
响应体
  • dataobject
    响应结果
  • author string
    自定义页面的作者
    Example: "Alvin"
  • body_html string
    自定义页面的内容
    Example: "content of the page"
  • handle string
    自定义页面的handle
    Example: "pagecustomUrl"
  • id string
    自定义页面的id
    Example: "6515896407215317133"
  • published_at string
    发布时间,格式yyyy-MM-dd HH:mm
    Example: "2024-06-18 18:16:39.792"
  • published_status boolean
    是否发布
    Example: true
  • template_name string
    绑定的模版名称
    Example: "templates/page.html"
  • title string
    自定义页面的标题
    Example: "title"
  • msg string
    错误信息
API Explorer
https://openapiceshidianpu.myshopline.com/admin/openapi/v20250601

ParamOptions

header required

Body

required
{
  "req": {
    "body_html": "\"content of the page\"",
    "handle": "\"pagecustomUrl\"",
    "page_id": "\"6515896407215317133\"",
    "published_at": "\"2024-06-18 18:16:39.792\"",
    "published_status": true,
    "template_name": "\"templates/page.html\"",
    "template_type": 1,
    "title": "\"title\"",
    "updater": "\"3300003187\"",
    "url": "\"/custom-url\""
  }
}

Language

curl --request PUT \
--url https://openapiceshidianpu.myshopline.com/admin/openapi/v20250601/store/page/customize.json \
--header 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw' \
--header 'Content-Type: application/json; charset=utf-8' \
--header 'accept: application/json'
这篇文章对你有帮助吗?