Skip to content

Provides store permissions.

GET
/api/stores/{storeId}/permissions

Authorizations

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

Parameters

Path Parameters

storeId*
Typestring
Required

Responses

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

Samples

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