GET /api/stores/{storeId}/invitations
GET
/api/stores/{storeId}/invitationsAuthorizations
Parameters
Path Parameters
storeId*
Typestring
RequiredResponses
Not logged in
Samples
cURL
curl -X GET http://localhost/api/stores/{storeId}/invitations
JavaScript
fetch("http://localhost/api/stores/{storeId}/invitations")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/stores/{storeId}/invitations");
Python
import requests
response = requests.get("http://localhost/api/stores/{storeId}/invitations")
print(response.json())