GET /api/foodSharePoints/{foodSharePointId}/permissions
GET
/api/foodSharePoints/{foodSharePointId}/permissionsAuthorizations
Parameters
Path Parameters
foodSharePointId*
Typestring
RequiredResponses
Success.
GET
/api/foodSharePoints/{foodSharePointId}/permissionsSamples
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())