PostStore

POST /stores/

Operations for stores, such as query score of platform

Query parameters

application/json

Body Required

Store operation.

  • operation string | null Required

    Operation for stores

    Value is QUERY_SCORE.

  • store_id string

    ID of the store.

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
  • 400

    Invalid input

  • 500 application/json

    Failed

    Hide response attributes Show response attributes object
POST /stores/
curl \
 -X POST https://nomad.samarkand-global.cn/envoy/stores/ \
 -H "x-ca-key: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"operation":"QUERY_SCORE","store_id":"string"}'
Request example
{
  "operation": "QUERY_SCORE",
  "store_id": "string"
}
Response examples (200)
{
  "code": 42,
  "message": "string",
  "data": [],
  "total": 42
}
Response examples (500)
{
  "code": 42,
  "message": "string",
  "data": [],
  "total": 42
}