Development boards

Development boards

List all development boards for a project

GEThttps://studio.edgeimpulse.com/v1/api/{projectId}/development-boards
Path parameters
projectId*integer

Project ID

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

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

developmentBoards*array of DevelopmentBoardResponse (object)
Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/development-boards', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text",
  "developmentBoards": [
    {
      "id": 0,
      "name": "text",
      "image": "text",
      "docsUrl": "text"
    }
  ]
}

Last updated