Hi @user122 , welcome to the forum.
I can barely see the image, but it looks like the endpoint is incorrect.
Here is an example using an OAuth configured application:
curl --location 'https://api.box.com/2.0/app_integrations/' \
--header 'Authorization: Bearer d7...5a' \
Results in:
{
"entries": [
{
"type": "app_integration",
"id": "10897"
},
{
"type": "app_integration",
"id": "1338"
},
{
"type": "app_integration",
"id": "13418"
},
{
"type": "app_integration",
"id": "3282"
}
],
"limit": 100
}
I can also specifically request an integration:
curl --location 'https://api.box.com/2.0/app_integrations/10897' \
--header 'Authorization: Bearer d7...5a'
Results in:
{
"type": "app_integration",
"id": "10897",
"app": {
"type": "app",
"id": "336417"
},
"name": "Edit with G Suite",
"description": "Securely manage your Google Docs, Sheets and Slides in Box",
"executable_item_types": [
"file"
],
"restricted_extensions": [
"docx",
"gdoc",
"xlsx",
"gsheet",
"pptx",
"gslides",
"gslide"
],
"scoped_to": "parent"
}
Let us know if this works for you.
Cheers