PUT
/
v3
/
stores
/
{storeId}
curl --request PUT \
  --url https://api.artisn.desarrollo-redbrand.com/api/v3/stores/{storeId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "active": true
}'
{
  "name": "New store 805",
  "active": true,
  "storeId": 805,
  "services": [
    {
      "name": "DELIVERY",
      "active": true
    }
  ],
  "vendorId": 16,
  "schedulesByChannel": [
    {
      "channelId": "0F049503-85CF-E511-80C6-000D3A3261F3",
      "schedules": [
        {
          "day": "FRIDAY",
          "endTime": "22:30",
          "startTime": "10:00"
        }
      ]
    }
  ],
  "storeCode": "T005",
  "taxesInfo": {
    "taxRate": 0,
    "vatRatePercentage": 12
  },
  "contactInfo": {
    "phone": "23955400",
    "address": "PICHINCHA / QUITO / INAQUITO / AV. AMERICA N37-288 Y VILLALENGUA"
  },
  "deliveryInfo": {
    "cookTime": "10",
    "deliveryId": 46356,
    "minimumOrder": "0.00",
    "shippingCost": 1.99
  },
  "locationInfo": {
    "city": "QUITO",
    "latitude": "-0.17250869436401206",
    "longitude": "-78.49125266075134"
  },
  "storeChannels": [
    "0F049503-85CF-E511-80C6-000D3A3261F3"
  ],
  "storeImage": [
    "<any>"
  ],
  "paymentMethodAvailability": "<string>",
  "paymentMethodInfo": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

storeId
integer
required

Unique identifier of the store

Query Parameters

vendorId
integer

Unique identifier of the brand

Body

application/json

Response

200
application/json

Store response

The response is of type object.