GET /api/foodSharePoints/{foodSharePointId}/permissions
GET
/api/foodSharePoints/{foodSharePointId}/permissionsAuthorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Path Parameters
foodSharePointId*
Typestring
RequiredResponses
Success.
GET
/api/foodSharePoints/{foodSharePointId}/permissionsAuthorization
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())