OpenPlatform

Decoding data returned by /Status

Consists of

Renew

Renew one or more loans. Required information:

User status

  1. Loans
  2. Overdue loans
  3. Fees
  4. Reservations
  5. Reservations on-shelf ready to be picked up

Loans

"loans": [
{
	"loanId": "4002222235",
	"dueDate": "2017-11-02T00:00:00+01:00",
	"title": "Utilitarian",
	"creator": "Napalm Death",
	"titleId": "29180385"
},

<a name="loanid"></a>

“loanId” Local ID “titleId” Pid

Loans can be renewed using /Status/Renew.

Loans overdue


Fees

        "debt": [
            {
                "amount": "20",
                "currency": "DKK",
                "date": "1970-01-01T00:00:00+01:00",
                "title": ""
            }
        ],

Intended as at detailed description of each fee, origin and related materiales. Currently only the total ammount and currency are available.

Reservations

"orders": [
	{
		"orderId": "normal:12222228",
		"status": "Active",
		"pickUpAgency": "DK-726500",
		"holdQueuePosition": "1",
		"creator": "The ¤Beatles",
		"title": "Sgt. Pepper's Lonely Hearts Club Band",
		"orderDate": "2017-06-16T15:16:02+02:00",
		"titleId": "53151884"
	},

Active reservations An order/reservation can be cancelled using the /Order/order until the reservation is on-shelf.

Reservations on-shelf

"status": "At reservation shelf",

Item ready to be picked up. On-shelf reservation cannot be cancelled.

{
    "statusCode": 200,
    "data": {
        "id": "CuOmQj0calksajdfalkjsdflkjasdfal",
        "name": "User Name",
        "address": "User address",
        "postalCode": "4000",
        "mail": "Someone@somewhere.com",
        "loans": [
            {
                "loanId": "4004222235",
                "dueDate": "2017-11-02T00:00:00+01:00",
                "title": "Utilitarian",
                "creator": "Napalm Death",
                "titleId": "29180385"
            },
            {
                "loanId": "4004211113",
                "dueDate": "2017-11-02T00:00:00+01:00",
                "title": "At play vol. 3: 10 full length DJ friendly tracks",
                "creator": "Deadmau5",
                "titleId": "45067815"
            }
        ],
        "orders": [
            {
                "orderId": "normal:11111288",
                "status": "Active",
                "pickUpAgency": "DK-726500",
                "holdQueuePosition": "1",
                "creator": "The ¤Beatles",
                "title": "Sgt. Pepper's Lonely Hearts Club Band",
                "orderDate": "2017-06-16T15:16:02+02:00",
                "titleId": "53151884"
            },
            {
                "orderId": "normal:15222221",
                "status": "Active",
                "pickUpAgency": "DK-726500",
                "holdQueuePosition": "4",
                "creator": "The ¤Pink Floyd",
                "title": "The ¤early years 1972 obfusc/ation",
                "orderDate": "2017-09-14T19:07:23+02:00",
                "titleId": "53015441"
            },
            {
                "orderId": "normal:15622245",
                "status": "At reservation shelf",
                "pickUpAgency": "DK-726500",
                "title": "Danmarks Melodibog: 4. Del: 1500 danske Sange: for Piano med underlagt Text: 5-binds udgave",
                "orderDate": "2017-09-28T12:22:34+02:00",
                "pickUpExpiryDate": "2017-10-06T00:00:00+02:00",
                "titleId": "02875837"
            }
        ],
        "debt": [
            {
                "amount": "20",
                "currency": "DKK",
                "date": "1970-01-01T00:00:00+01:00",
                "title": ""
            }
        ],
        "ddbcmsapi": "https://cmscontent.dbc.dk/"
    },
    "timings": {
        "total": 5597,
        "external": 5550
    }
}