List upload portals

List upload portals

Retrieve all configured upload portals.

GEThttps://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/portals
Path parameters
organizationId*integer

Organization ID

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

Optional error description (set if 'success' was false)

portals*array of object
Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/portals', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text",
  "portals": [
    {
      "id": 0,
      "name": "text",
      "description": "text",
      "url": "text",
      "bucketId": 0,
      "bucketName": "text",
      "bucketPath": "text",
      "bucketUrl": "text",
      "created": "2025-01-21T00:58:45.170Z"
    }
  ]
}

Last updated