Dedicated Account
Operations available only for enterprise dedicated accounts
Basic endpoint to verify dedicated account API is working
Successful response
Unauthorized
GET /dedicated-account HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer JWT
Accept: */*
{
"message": "text",
"status": "text"
}
Creates a new notebook with the specified resources (text, website, youtube, pdf)
Notebook created successfully
Invalid request parameters
Unauthorized - requires enterprise account
Server error
Service unavailable - browser is busy
POST /dedicated-account/createNotebook HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 48
{
"resources": [
{
"type": "text",
"content": "text"
}
]
}
{
"notebookId": "text"
}
Deletes a notebook by its ID
The ID of the notebook to delete
Notebook deleted successfully
Invalid request parameters
Unauthorized - requires enterprise account
Server error
Service unavailable - browser is busy
POST /dedicated-account/deleteNotebook HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 13
{
"id": "text"
}
{
"success": true
}
Retrieves all notebooks for the authenticated user
List of notebook IDs retrieved successfully
Unauthorized - requires enterprise account
Server error
Service unavailable - browser is busy
GET /dedicated-account/getNotebooks HTTP/1.1
Host: api.autocontentapi.com
Authorization: Bearer JWT
Accept: */*
{
"notebookIds": [
"text"
]
}