Module: BeyondApi::ShopLocations
- Included in:
- Shop
- Defined in:
- lib/beyond_api/resources/shops/locations.rb
Instance Method Summary collapse
-
#create_location(body) ⇒ OpenStruct
A
POST
request is used to create a location. -
#delete_location(location_id) ⇒ Object
A
DELETE
request is used to delete a location. -
#location(location_id) ⇒ OpenStruct
A
GET
request is used to retrieve a particular location by its id. -
#locations(params = {}) ⇒ OpenStruct
A
GET
request is used to retrieve a list of all locations for the current shop. -
#update_location(location_id, body) ⇒ OpenStruct
A
PUT
request is used to update a location.
Instance Method Details
#create_location(body) ⇒ OpenStruct
A POST
request is used to create a location.
$ curl 'https://yourshop.api.urn/shop/locations' -i -X POST \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer <Access token>' \
-d '{
"languageCode" : "de",
"storeCode" : "",
"locationName" : "HealthyThings",
"primaryPhone" : "01522 3097093",
"address" : {
"locality" : "Hamburg",
"postalCode" : "20253",
"regionCode" : "DE",
"addressLines" : [ "Pilatuspool 2", "ePages GmbH" ]
},
"primaryCategory" : {
"categoryId" : "gcid:store",
"displayName" : "Geschaeft"
},
"websiteUrl" : "",
"regularHours" : {
"periods" : [ {
"openDay" : "MONDAY",
"openTime" : "18:00",
"closeDay" : "TUESDAY",
"closeTime" : "03:00"
}, {
"openDay" : "WEDNESDAY",
"openTime" : "17:00",
"closeDay" : "WEDNESDAY",
"closeTime" : "23:00"
} ]
},
"latLng" : {
"latitude" : 53.5847424,
"longitude" : 9.968901
}
}'
114 115 116 117 118 |
# File 'lib/beyond_api/resources/shops/locations.rb', line 114 def create_location(body) response, status = BeyondApi::Request.post(@session, "/shop/locations", body) handle_response(response, status) end |
#delete_location(location_id) ⇒ Object
A DELETE
request is used to delete a location.
$ curl 'https://yourshop.api.urn/shop/locations/5bcf7c0a-d130-4cf8-af0c-5e57d4605be0' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer <Access token>'
136 137 138 139 140 |
# File 'lib/beyond_api/resources/shops/locations.rb', line 136 def delete_location(location_id) response, status = BeyondApi::Request.delete(@session, "/shop/locations/#{location_id}") handle_response(response, status, respond_with_true: true) end |
#location(location_id) ⇒ OpenStruct
A GET
request is used to retrieve a particular location by its id.
$ curl 'https://yourshop.api.urn/shop/locations/09ca2715-cdf7-4af3-8b22-9ecf39d1e202' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer <Access token>'
158 159 160 161 162 |
# File 'lib/beyond_api/resources/shops/locations.rb', line 158 def location(location_id) response, status = BeyondApi::Request.get(@session, "/shop/locations/#{location_id}") handle_response(response, status) end |
#locations(params = {}) ⇒ OpenStruct
A GET
request is used to retrieve a list of all locations for the current shop.
$ curl 'https://yourshop.api.urn/shop/locations' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer <Access token>'
25 26 27 |
# File 'lib/beyond_api/resources/shops/locations.rb', line 25 def locations(params = {}) handle_all_request("/shop/locations", :locations, params) end |
#update_location(location_id, body) ⇒ OpenStruct
A PUT
request is used to update a location.
$ curl 'https://yourshop.api.urn/shop/locations/a7a2acfa-0243-4e52-8b56-81cb781ce61d' -i -X PUT \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer <Access token>' \
-d '{
"languageCode" : "en",
"storeCode" : "",
"locationName" : "UnhealthyThings",
"primaryPhone" : "01234 691997",
"address" : {
"locality" : "London",
"postalCode" : "1",
"regionCode" : "GB",
"addressLines" : [ "St. James Square", "ePages Ltd" ]
},
"primaryCategory" : {
"categoryId" : "gcid:store",
"displayName" : "Shop"
},
"websiteUrl" : "",
"regularHours" : {
"periods" : [ {
"openDay" : "SATURDAY",
"openTime" : "06:00",
"closeDay" : "SATURDAY",
"closeTime" : "22:00"
} ]
},
"latLng" : {
"latitude" : 51.5072,
"longitude" : -0.1353
}
}'
245 246 247 248 249 |
# File 'lib/beyond_api/resources/shops/locations.rb', line 245 def update_location(location_id, body) response, status = BeyondApi::Request.put(@session, "/shop/locations/#{location_id}", body) handle_response(response, status) end |