Skip to content

Returns all pending applications for a working group.

GET
/api/applications/{groupId}

Authorizations

Parameters

Path Parameters

groupId*

for which working group to list the applications

Typeinteger
Required

Responses

Success

Samples

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