PATCH /v1/reseller_stores/{id}

Update a reseller store

Updates a reseller store's name.

Updates the name of a reseller store. Only the name field can be updated.

Path parameters

id string REQUIRED

Body parameters

name string OPTIONAL

Responses

200

400

Validation failed

404

Request

curl -X PATCH https://api.example.com/v1/reseller_stores/:id \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json" \
  -d '{}'

Response

200 200 OK
{
  "id": "example_id",
  "ownerId": "example_ownerId",
  "name": "example_name",
  "platform": "shopify",
  "shopDomain": "example_shopDomain",
  "createdAt": "example_createdAt",
  "deletedAt": "example_deletedAt",
  "request_id": "example_request_id"
}