Developers Guide

API Endpoints

Update Store Details

Endpoint to set/update the store information.

PUT /v1/stores?access_token=<accessToken>

Endpoint for updating the information about the store.

JSON Body

{
  "storeName": string,
  "storeCompanyName": string,
  "storeCompanyID": string,
  "storePhoneNumber": string,
  "storeAddress": string,
  "storeCity": string,
  "storeState": string,
  "storeCountryCode": string,
  "storePostalCode": string,
}

Response

  • Success 200
  • accessToken is incorrect 403
  • The request data param is incorrect 400
  • Internal server error 500