Skip to main content
POST
/
business
/
{business_id}
/
food_menus
Set Google Food Menus for your business
curl --request POST \
  --url https://api.partoo.co/v2/business/{business_id}/food_menus \
  --header 'Content-Type: application/json' \
  --header 'x-APIKey: <api-key>' \
  --data @- <<EOF
{
  "menus": [
    {
      "name": "Starters",
      "order": 1,
      "items": [
        {
          "name": "Starter 1",
          "order": 1,
          "description": "First starter of the food menu",
          "price": 1,
          "media": {
            "source_url": "https://www.source_url.com/main_dishes",
            "public_url": "https://www.partoo_url.com/main_dishes"
          }
        },
        {
          "name": "Starter 2",
          "order": 2,
          "description": "Second starter of the food menu",
          "price": 5
        }
      ]
    },
    {
      "name": "Main dishes",
      "order": 2,
      "items": [
        {
          "name": "Today's special",
          "order": 1,
          "description": "Today's special description",
          "price": 25,
          "media": {
            "source_url": "https://www.source_url.com/main_dishes",
            "public_url": "https://www.partoo_url.com/main_dishes"
          }
        }
      ]
    }
  ]
}
EOF
import requests

url = "https://api.partoo.co/v2/business/{business_id}/food_menus"

payload = { "menus": [
        {
            "name": "Starters",
            "order": 1,
            "items": [
                {
                    "name": "Starter 1",
                    "order": 1,
                    "description": "First starter of the food menu",
                    "price": 1,
                    "media": {
                        "source_url": "https://www.source_url.com/main_dishes",
                        "public_url": "https://www.partoo_url.com/main_dishes"
                    }
                },
                {
                    "name": "Starter 2",
                    "order": 2,
                    "description": "Second starter of the food menu",
                    "price": 5
                }
            ]
        },
        {
            "name": "Main dishes",
            "order": 2,
            "items": [
                {
                    "name": "Today's special",
                    "order": 1,
                    "description": "Today's special description",
                    "price": 25,
                    "media": {
                        "source_url": "https://www.source_url.com/main_dishes",
                        "public_url": "https://www.partoo_url.com/main_dishes"
                    }
                }
            ]
        }
    ] }
headers = {
    "x-APIKey": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
  method: 'POST',
  headers: {'x-APIKey': '<api-key>', 'Content-Type': 'application/json'},
  body: JSON.stringify({
    menus: [
      {
        name: 'Starters',
        order: 1,
        items: [
          {
            name: 'Starter 1',
            order: 1,
            description: 'First starter of the food menu',
            price: 1,
            media: {
              source_url: 'https://www.source_url.com/main_dishes',
              public_url: 'https://www.partoo_url.com/main_dishes'
            }
          },
          {
            name: 'Starter 2',
            order: 2,
            description: 'Second starter of the food menu',
            price: 5
          }
        ]
      },
      {
        name: 'Main dishes',
        order: 2,
        items: [
          {
            name: 'Today\'s special',
            order: 1,
            description: 'Today\'s special description',
            price: 25,
            media: {
              source_url: 'https://www.source_url.com/main_dishes',
              public_url: 'https://www.partoo_url.com/main_dishes'
            }
          }
        ]
      }
    ]
  })
};

fetch('https://api.partoo.co/v2/business/{business_id}/food_menus', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.partoo.co/v2/business/{business_id}/food_menus",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => json_encode([
    'menus' => [
        [
                'name' => 'Starters',
                'order' => 1,
                'items' => [
                                [
                                                                'name' => 'Starter 1',
                                                                'order' => 1,
                                                                'description' => 'First starter of the food menu',
                                                                'price' => 1,
                                                                'media' => [
                                                                                                                                'source_url' => 'https://www.source_url.com/main_dishes',
                                                                                                                                'public_url' => 'https://www.partoo_url.com/main_dishes'
                                                                ]
                                ],
                                [
                                                                'name' => 'Starter 2',
                                                                'order' => 2,
                                                                'description' => 'Second starter of the food menu',
                                                                'price' => 5
                                ]
                ]
        ],
        [
                'name' => 'Main dishes',
                'order' => 2,
                'items' => [
                                [
                                                                'name' => 'Today\'s special',
                                                                'order' => 1,
                                                                'description' => 'Today\'s special description',
                                                                'price' => 25,
                                                                'media' => [
                                                                                                                                'source_url' => 'https://www.source_url.com/main_dishes',
                                                                                                                                'public_url' => 'https://www.partoo_url.com/main_dishes'
                                                                ]
                                ]
                ]
        ]
    ]
  ]),
  CURLOPT_HTTPHEADER => [
    "Content-Type: application/json",
    "x-APIKey: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.partoo.co/v2/business/{business_id}/food_menus"

	payload := strings.NewReader("{\n  \"menus\": [\n    {\n      \"name\": \"Starters\",\n      \"order\": 1,\n      \"items\": [\n        {\n          \"name\": \"Starter 1\",\n          \"order\": 1,\n          \"description\": \"First starter of the food menu\",\n          \"price\": 1,\n          \"media\": {\n            \"source_url\": \"https://www.source_url.com/main_dishes\",\n            \"public_url\": \"https://www.partoo_url.com/main_dishes\"\n          }\n        },\n        {\n          \"name\": \"Starter 2\",\n          \"order\": 2,\n          \"description\": \"Second starter of the food menu\",\n          \"price\": 5\n        }\n      ]\n    },\n    {\n      \"name\": \"Main dishes\",\n      \"order\": 2,\n      \"items\": [\n        {\n          \"name\": \"Today's special\",\n          \"order\": 1,\n          \"description\": \"Today's special description\",\n          \"price\": 25,\n          \"media\": {\n            \"source_url\": \"https://www.source_url.com/main_dishes\",\n            \"public_url\": \"https://www.partoo_url.com/main_dishes\"\n          }\n        }\n      ]\n    }\n  ]\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("x-APIKey", "<api-key>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.partoo.co/v2/business/{business_id}/food_menus")
  .header("x-APIKey", "<api-key>")
  .header("Content-Type", "application/json")
  .body("{\n  \"menus\": [\n    {\n      \"name\": \"Starters\",\n      \"order\": 1,\n      \"items\": [\n        {\n          \"name\": \"Starter 1\",\n          \"order\": 1,\n          \"description\": \"First starter of the food menu\",\n          \"price\": 1,\n          \"media\": {\n            \"source_url\": \"https://www.source_url.com/main_dishes\",\n            \"public_url\": \"https://www.partoo_url.com/main_dishes\"\n          }\n        },\n        {\n          \"name\": \"Starter 2\",\n          \"order\": 2,\n          \"description\": \"Second starter of the food menu\",\n          \"price\": 5\n        }\n      ]\n    },\n    {\n      \"name\": \"Main dishes\",\n      \"order\": 2,\n      \"items\": [\n        {\n          \"name\": \"Today's special\",\n          \"order\": 1,\n          \"description\": \"Today's special description\",\n          \"price\": 25,\n          \"media\": {\n            \"source_url\": \"https://www.source_url.com/main_dishes\",\n            \"public_url\": \"https://www.partoo_url.com/main_dishes\"\n          }\n        }\n      ]\n    }\n  ]\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.partoo.co/v2/business/{business_id}/food_menus")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["x-APIKey"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"menus\": [\n    {\n      \"name\": \"Starters\",\n      \"order\": 1,\n      \"items\": [\n        {\n          \"name\": \"Starter 1\",\n          \"order\": 1,\n          \"description\": \"First starter of the food menu\",\n          \"price\": 1,\n          \"media\": {\n            \"source_url\": \"https://www.source_url.com/main_dishes\",\n            \"public_url\": \"https://www.partoo_url.com/main_dishes\"\n          }\n        },\n        {\n          \"name\": \"Starter 2\",\n          \"order\": 2,\n          \"description\": \"Second starter of the food menu\",\n          \"price\": 5\n        }\n      ]\n    },\n    {\n      \"name\": \"Main dishes\",\n      \"order\": 2,\n      \"items\": [\n        {\n          \"name\": \"Today's special\",\n          \"order\": 1,\n          \"description\": \"Today's special description\",\n          \"price\": 25,\n          \"media\": {\n            \"source_url\": \"https://www.source_url.com/main_dishes\",\n            \"public_url\": \"https://www.partoo_url.com/main_dishes\"\n          }\n        }\n      ]\n    }\n  ]\n}"

response = http.request(request)
puts response.read_body
{
  "menus": [
    {
      "name": "Starters",
      "order": 1,
      "items": [
        {
          "name": "Starter 1",
          "order": 1,
          "description": "First starter of the food menu",
          "price": 1,
          "media": {
            "source_url": "https://www.source_url.com/main_dishes",
            "public_url": "https://www.partoo_url.com/main_dishes"
          }
        },
        {
          "name": "Starter 2",
          "order": 2,
          "description": "Second starter of the food menu",
          "price": 5
        }
      ]
    },
    {
      "name": "Main dishes",
      "order": 2,
      "items": [
        {
          "name": "Today's special",
          "order": 1,
          "description": "Today's special description",
          "price": 25,
          "media": {
            "source_url": "https://www.source_url.com/main_dishes",
            "public_url": "https://www.partoo_url.com/main_dishes"
          }
        }
      ]
    }
  ]
}
{
  "errors": {
    "json": {}
  }
}
{
  "errors": {
    "authentication": "User not authenticated"
  }
}
{
  "errors": {
    "authorization": "Operation not allowed"
  }
}
{
  "errors": {
    "json": "Resource not found"
  }
}

Authorizations

x-APIKey
string
header
required

The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey). An api_key is linked to a user. This user's role will give you different access level to the API features.

Path Parameters

business_id
string
required

Business id.

It may be replaced by c-{code} where code is the store code, which should be unique per organization. This can be used only for ORG_ADMIN, GROUP_MANAGER and BUSINESS_MANAGER users.

Body

application/json

A Google food menu for business.

menus
object[]

Response

OK

A Google food menu for business.

menus
object[]