Store Concepts

Different stores can have different concepts in your company with different deployment settings. On this page, we’ll dive into the different store concepts endpoints you can use to manage your store concepts. We'll look at how to upload and update store concepts.

The Store Concept model

The role model contains all the information about this role parameters, including the role name, code and access restrictions.

Properties

  • Name
    code
    Type
    number
    Description

    Unique identifier for the store concept.

  • Name
    name
    Type
    string
    Description

    The name of the store concept.


POST/integrations/storeConcepts

Update all store concepts

This endpoint allows you to upload all your store concepts. It replaces all the existing concepts with uploaded ones. See the code examples for how to upload your Store Concepts through ProShedule API.

Required attributes

  • Name
    body
    Type
    Array<storeConcept>
    Description

    An array of storeConcept objects.

Request

POST
/integrations/storeConcepts
curl https://api.proschedule.ambraisoft.com/integrations/storeConcepts \
  --header "Content-Type: application/json" \
  --header "Authorization: Bearer {token}" \
  --data-raw '[
    {
      "code": 0,
      "name": "In-Line",
    },
    {
      "code": 1,
      "name": "Drive Thru"
    },
    {
      "code": 2,
      "name": "Food Court",
    }
  ]'

Response

  {
      "message": "3 store concept(s) uploaded",
      "status": 200
  }

Was this page helpful?