Requires read_store_log access scope.
For more info, refer to:
GET https://{handle}.myshopline.com/admin/openapi/v20260301/store/operation_logs.json
handle : The store's unique identifier, which is the prefix of the store's domain name. For example, if a store's domain name is open001.myshopline.com , the store handle is open001 .
Get a list of store operation logs based on specific conditions. You can filter by timestamp, resource type, event type, and more.
Query Parameters
  • limit string
    Maximum number of operation logs to be returned in the query.
    Value range: 1-200
    Default value:50
  • since_id string
    The ID of a specific operation log. Start querying operation logs from this specified ID.
  • subject_type string
    Resource type. For Example, If the operation relates to product management, corresponding subject_type will be products.
  • verb string
    Event type. For example, If the operation relates to product creation, subject_type will be products, and verb will be add_new_product.
  • created_at_max string required
    Specify the cutoff creation date and time for operation logs to query. Operation logs created on or before this date are returned. Format: ISO 8601.
    Example: 2023-04-12T22:59:52+08:00.
  • created_at_min string required
    Specify the initial creation date and time for operation logs to query. Operation logs created on or after this date are returned. Format: ISO 8601.
    Example: 2023-04-12T22:59:52+08:00.
Request Headers
  • Content-Type string required
    The field must be set to the fixed value application/json; charset=utf-8.
  • Authorization string required
    The access token for the API resource. Refer to App authorizationto obtain the access token, and then pass the obtained token in the Bearer format.
    Example:
    Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw
Status Codes
For the complete list of codes and messages, see Http status code.

Response Headers
  • traceId
    A globally unique identifier for the request. It is used to track the request flow throughout the system, allowing for easy location and debugging when issues arise.
Response Body
  • dataobject[]
    Response body.
  • author string
    Operator.
  • created_at string
    The date and time when the operation occurred. Format: ISO 8601.
    Example: 2023-04-12T22:59:52+08:00
  • detail string
    The description of the operation.
  • id string
    The operation log ID.
  • subject_id string
    Resource ID. For example, If subject_type returns products, the resource ID is the product's ID.
  • subject_type string
    Resource type. For Example, If the operation relates to product management, corresponding subject_type will be products.
  • verb string
    Event type. For example, If the operation relates to product creation, subject_type will be products, and verb will be add_new_product.
API Explorer
https://openapiceshidianpu.myshopline.com/admin/openapi/v20260301

ParamOptions

query required
query required
header required
query
query
query
query

Language

curl --request GET \
--url https://openapiceshidianpu.myshopline.com/admin/openapi/v20260301/store/operation_logs.json \
--header 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw' \
--header 'Content-Type: application/json; charset=utf-8' \
--header 'accept: application/json'
Examples
Get a list of store operation logs
Response
{
"data": [
{
"author": "shopline",
"created_at": "2024-08-01T12:38:49+08:00",
"detail": "Add new product Product name:This is a title id:16065793365869904616712340 Mode:Openapi",
"id": "6579336590463354672",
"subject_type": "products",
"verb": "add_new_product"
},
{
"author": "shopline",
"created_at": "2024-08-01T12:34:36+08:00",
"detail": "Add new product Product name:This is a title id:16065793323425393631512340 Mode:Openapi",
"id": "6579332347169872519",
"subject_type": "products",
"verb": "add_new_product"
}
]
}
Was this article helpful to you?