Library How-tos
Get All Library How-tos
This endpoint retrieves a list of Library How-to resources.
GET /api/v2/library/implementations/
GET /api/v2/library/implementations/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json
{
"results": [
{
"db_id": 1,
"id": "I1",
"title": "Java with Jasypt",
"text": "## Description\n\nJava Simplified Encryption (Jasypt) has a `StrongPasswordEncryptor` class...",
"type": "Built-in",
"created_by": {
"id": 4,
"email": "no-reply+content_admin@localhost",
"first_name": "SD",
"last_name": "Elements"
},
"created_date_time": "2010-10-20T13:47:10-04:00",
"last_updated_by": {
"id": 4,
"email": "no-reply+content_admin@localhost",
"first_name": "SD",
"last_name": "Elements"
},
"last_updated_date": "2021-03-10T04:03:03.622000-05:00",
"active": true
}
]
}
Get a Library How-to
This endpoint retrieves a single Library How-to resource.
GET /api/v2/library/implementations/{implementation_id}/
URL Parameters
| Parameter | Description |
|---|---|
| implementation_id | The id of the Library How-to to retrieve. |
GET /api/v2/library/implementations/I1/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json
{
"db_id": 1,
"id": "I1",
"title": "Java with Jasypt",
"text": "## Description\n\nJava Simplified Encryption (Jasypt) has a `StrongPasswordEncryptor`...",
"type": "Built-in",
"created_by": {
"id": 4,
"email": "no-reply+content_admin@localhost",
"first_name": "SD",
"last_name": "Elements"
},
"created_date_time": "2010-10-20T13:47:10-04:00",
"last_updated_by": {
"id": 4,
"email": "no-reply+content_admin@localhost",
"first_name": "SD",
"last_name": "Elements"
},
"last_updated_date": "2021-03-10T04:03:03.622000-05:00",
"active": true
}