Skip to content

Get applications to store team.

GET
/api/stores/{storeId}/requests

Authorizations

Parameters

Path Parameters

storeId*
Typestring
Required

Responses

Success

Samples

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