ePortfolios
An ePortfolio object looks like:
{
// The database ID of the ePortfolio
"id": 1,
// The user ID to which the ePortfolio belongs
"user_id": 1,
// The name of the ePortfolio
"name": "My Academic Journey",
// Whether or not the ePortfolio is visible without authentication
"public": true,
// The creation timestamp for the ePortfolio
"created_at": "2021-09-20T18:59:37Z",
// The timestamp of the last time any of the ePortfolio attributes changed
"updated_at": "2021-09-20T18:59:37Z",
// The state of the ePortfolio. Either 'active' or 'deleted'
"workflow_state": "active",
// The timestamp when the ePortfolio was deleted, or else null
"deleted_at": "2021-09-20T18:59:37Z",
// A flag indicating whether the ePortfolio has been
// flagged or moderated as spam. One of 'flagged_as_possible_spam',
// 'marked_as_safe', 'marked_as_spam', or null
"spam_status": null
}An ePortfolioPage object looks like:
GET /api/v1/users/:user_id/eportfolios
GET /api/v1/users/:user_id/eportfoliosRequest Parameters:
Parameter
Type
Description
GET /api/v1/eportfolios/:id
GET /api/v1/eportfolios/:idDELETE /api/v1/eportfolios/:id
DELETE /api/v1/eportfolios/:idGET /api/v1/eportfolios/:eportfolio_id/pages
GET /api/v1/eportfolios/:eportfolio_id/pagesPUT /api/v1/eportfolios/:eportfolio_id/moderate
PUT /api/v1/eportfolios/:eportfolio_id/moderateRequest Parameters:
Parameter
Type
Description
PUT /api/v1/users/:user_id/eportfolios
PUT /api/v1/users/:user_id/eportfoliosRequest Parameters:
Parameter
Type
Description
PUT /api/v1/eportfolios/:eportfolio_id/restore
PUT /api/v1/eportfolios/:eportfolio_id/restoreLast updated
Was this helpful?