Skip to content

GET /api/foodSharePoints/{foodSharePointId}/permissions

GET
/api/foodSharePoints/{foodSharePointId}/permissions

Authorizations

Parameters

Path Parameters

foodSharePointId*
Typestring
Required

Responses

Success.

Samples

cURL
curl -X GET http://localhost/api/foodSharePoints/{foodSharePointId}/permissions
JavaScript
fetch("http://localhost/api/foodSharePoints/{foodSharePointId}/permissions")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/foodSharePoints/{foodSharePointId}/permissions");
Python
import requests
response = requests.get("http://localhost/api/foodSharePoints/{foodSharePointId}/permissions")
print(response.json())