Skip to content

Returns all pending applications for a working group.

GET
/api/applications/{groupId}

Authorizations

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

Parameters

Path Parameters

groupId*

for which working group to list the applications

Typeinteger
Required

Responses

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

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())