Skip to content

GET /api/foodSharePoints/{foodSharePointId}/permissions

GET
/api/foodSharePoints/{foodSharePointId}/permissions

Authorizations

api_key
Type: API Key (header: X-CSRF-Token)

Parameters

Path Parameters

foodSharePointId*
Typestring
Required

Responses

Success.
Authorization
api_key
Variables
Key
Value
foodSharePointId*
cURL
curl -X GET \
'http://localhost/api/foodSharePoints/{foodSharePointId}/permissions'

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())