Provides store members.
GET
/api/stores/{storeId}/memberDepending on the access permission some information are not provided.
Authorizations
Parameters
Path Parameters
storeId*
Typestring
RequiredResponses
Success
Samples
cURL
curl -X GET http://localhost/api/stores/{storeId}/member
JavaScript
fetch("http://localhost/api/stores/{storeId}/member")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/stores/{storeId}/member");
Python
import requests
response = requests.get("http://localhost/api/stores/{storeId}/member")
print(response.json())