Fork me on GitHub
Phraseanet Documentation

Baskets Add

About

Adds a new basket

/api/v1/baskets/add/
Informations  
HTTP Method GET
Requires Authentication Yes

Parameters

Parameters Type Information
name string The name of the basket

Response Fields

Field Description
basket The created basket

Response sample

{
    "meta": {
        "api_version": "1.3",
        "request": "POST /api/v1/baskets/add/",
        "response_time": "2012-06-29T18:19:30+02:00",
        "http_code": 200,
        "error_type": null,
        "error_message": null,
        "error_details": null,
        "charset": "UTF-8"
    },
    "response": {
            "basket": {
            "basket_id": 148,
            "created_on": "2012-06-29T18:19:30+02:00",
            "description": "",
            "name": "test",
            "pusher_usr_id": null,
            "updated_on": "2012-06-29T18:19:30+02:00",
            "unread": false,
            "validation_basket": false
        }
    }
}