List Apps
import requests
url = "https://api.parallel.ai/account/service/v1/apps"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.parallel.ai/account/service/v1/apps', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.parallel.ai/account/service/v1/apps")
.header("Authorization", "Bearer <token>")
.asString();curl --request GET \
--url https://api.parallel.ai/account/service/v1/apps \
--header 'Authorization: Bearer <token>'{
"apps": [
{
"app_name": "<string>",
"org_name": "<string>",
"app_id": "<string>",
"org_id": "<string>"
}
]
}Apps
List Apps
List all apps for the authenticated organization
GET
/
service
/
v1
/
apps
List Apps
import requests
url = "https://api.parallel.ai/account/service/v1/apps"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.parallel.ai/account/service/v1/apps', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.parallel.ai/account/service/v1/apps")
.header("Authorization", "Bearer <token>")
.asString();curl --request GET \
--url https://api.parallel.ai/account/service/v1/apps \
--header 'Authorization: Bearer <token>'{
"apps": [
{
"app_name": "<string>",
"org_name": "<string>",
"app_id": "<string>",
"org_id": "<string>"
}
]
}Authorizations
Send Authorization: Bearer <access_token>. This must be an account API access token minted via a supported Parallel OAuth grant, not a standard API key. See the account API docs.
Response
200 - application/json
Successful Response
Model for getting apps for organization response.
List of apps
Show child attributes
Show child attributes