Public
Documentation Settings

Dropp - api

Integrating with Dropp involves modifying your online store to allow the customer to choose a Dropp location and making a POST request to our API in to create the order in our system.

Authentication

In order to make requests to the API, a secret API key must be provided. The following API endpoints are intended for server-to-server communication only, and authorization is requested by adding an Authorization: Basic YOUR-TOKEN header to requests.

To get started on production environment you can get your API key here: https://dropp.is/stofna-adgang

To get API key and storeid for staging environment, please contact dropp@dropp.is

Environment

Staging environment: https://stage.dropp.is
Production environment: https://api.dropp.is

Locations

GETGet locations by store

https://stage.dropp.is/dropp/api/v1/dropp/locations?store={storeid}

Get all Dropp locations for a given store.

  • Required parameters:
    • storeid - The storeid given on signup.
PARAMS
store

{storeid}

GETGet zipcodes for home delivery and Flytjandi

https://stage.dropp.is/dropp/api/v1/dropp/location/deliveryzips

Functions that returns two arrays of zip codes and info.

  • codes
    • Zip codes where home delivery is available
  • flytjandicodes
    • Zip codes where Flytjandi is available
json
"status": 0,
  "message": "",
  "codes": [
    {
      "code": 101,
      "town": "Reykjavík",
      "capital": true
    },
    {
      "code": 102,
      "town": "Reykjavík",
      "capital": true
    },
...
 ],
"flytjandicodes": [
    {
      "code": 190,
      "town": "Vogum"
    },
    {
      "code": 191,
      "town": "Vogum"
    },
...
 ]
}

GETFramendi / kort

app.dropp.is/dropp-locations.min.js?data-store-id=:data-store-id&data-env=stage

Þið getið séð hvernig þetta lítur út á www.elko.is, www.literalstreetart.com og www.hurrareykjavik.is.
Við getum stillt litina á kortinu þannig að þeir passi við síðuna ykkar (þetta er t.d. blátt hjá Elko og
svart hjá Húrra Reykjavík).

Það þarf að setja þetta script inn á heimasíðuna:

< script type="application/javascript" src="//app.dropp.is/dropp-
locations.min.js" data-store-id="...þið fáið store-id í tölvupósti þegar þið stofnið aðgang á dropp.is...&data-env=stage" async>< /script>

&data-env=stage er aðeins inni á meðan stage er notað, það er svo tekið út þegar talað er við raun kerfi

Svo þarf að setja takka, t.d. "Velja afhendingarstað", og kalla í þetta fall þegar ýtt er á takkann:
chooseDroppLocation()
.then(location => {
// location is either null (if the user dismissed the modal),
// or a location object with an UUID as its id.
})
.catch(error => {
// The modal may throw errors, for example if it cannot display locations.
});

Fallið skilar svo location-id sem þarf að vista og senda með pöntuninni í gegnum vefþjónustuna
svo þið vitið hvaða staður var valinn.

PARAMS
data-store-id

:data-store-id

data-env

stage

Loading