Stamps API
Endpoints related to Stamps.
Get a stamp from an Archive.
ID of the stamp.
Success response
JSON object for the Stamp model
ID of the stamp
Position of the stamp in the page in normalized coordinates (0-100)
Text of the stamp
Error response
The Stamp is currently locked for modification
GET /api/stamps/{id} HTTP/1.1
Host: lrr.tvc-16.science
Accept: */*
{
"position": "12,34",
"content": "Lorem ipsum dolore"
}Update a stamp from an Archive.
Use Authorization: Bearer <base64(api_key)>
ID of the stamp.
Text of the stamp.
Position of the stamp in the page.
Success response
Name of operation
Error message if any
Success message if any
Returns 1 if operation was successful, else 0
Error response
The Stamp is currently locked for modification
PUT /api/stamps/{id} HTTP/1.1
Host: lrr.tvc-16.science
Authorization: YOUR_API_KEY
Accept: */*
{
"operation": "text",
"error": "text",
"successMessage": "text",
"success": 0
}Remove a stamp from an Archive.
Use Authorization: Bearer <base64(api_key)>
ID of the stamp.
Success response
Name of operation
Error message if any
Success message if any
Returns 1 if operation was successful, else 0
Error response
The Stamp is currently locked for modification
DELETE /api/stamps/{id} HTTP/1.1
Host: lrr.tvc-16.science
Authorization: YOUR_API_KEY
Accept: */*
{
"operation": "text",
"error": "text",
"successMessage": "text",
"success": 0
}Last updated