Auth
Stores and Sales Channels
Lists
Products
Injection Web Services
Order Fulfillment
Switch Transactional
Stores and Sales Channels
Change store status
This endpoint changes the status of a store in the system
PUT
/
v3
/
stores
/
{storeId}
Copy
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
}'
Copy
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Unique identifier of the store
Query Parameters
Unique identifier of the brand
Body
application/json
Response
200
application/json
Store response
The response is of type object
.
Copy
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
}'
Copy
{
"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>"
}
Assistant
Responses are generated using AI and may contain mistakes.