Indico
  • 1. indico.util.fossilize – “Serializing” elaborate Python objects to dictionaries and lists
    • 1.1. Example
    • 1.2. Advanced topics
  • 2. indico.tests - test framework
    • 2.1. Architecture
    • 2.2. Implementing a new TestRunner
  • 3. indico.modules.scheduler – task scheduling framework and daemon
    • 3.1. Overview
    • 3.2. Scheduler
    • 3.3. Client
    • 3.4. Tasks
    • 3.5. Module
    • 3.6. Example
    • 3.7. Daemon
  • 4. Livesync
    • 4.1. The Multipointer Track
    • 4.2. SyncManager
    • 4.3. Agents
    • 4.4. CLI
    • 4.5. Development Tools
    • 4.6. Internals
  • 5. Indico’s HTTP Export API
    • 1. Accessing the API
    • 2. Common Parameters
    • 3. API Resources
    • 4. HTTP API Tools
 
Indico
  • Docs »
  • 5. Indico’s HTTP Export API »
  • 3. API Resources »
  • 4. Event Search
  • Edit on GitHub

4. Event Search¶

4.1. URL Format¶

/export/event/search/TERM.TYPE

The TERM should be an string, e.g. “ichep”

4.2. Results¶

Returns the events found.

Result for https://indico.server/export/event/search/ichep.json?ak=00000000-0000-0000-0000-000000000000&pretty=yes:

{
    "count": 5,
    "additionalInfo": {},
    "_type": "HTTPAPIResult",
    "complete": true,
    "url": "https:\/\/indico.server\/export\/event\/search\/ichep.json?ak=00000000-0000-0000-0000-000000000000&pretty=yes",
    "ts": 1367245058,
    "results": [
        {
            "startDate": {
                "date": "2010-07-16",
                "tz": "UTC",
                "time": "11:00:00"
            },
            "hasAnyProtection": false,
            "id": "101465",
            "title": "Rehearsals for ICHEP Friday 16th July Afternoon Session"
        },
        {
            "startDate": {
                "date": "2010-08-06",
                "tz": "UTC",
                "time": "12:00:00"
            },
            "hasAnyProtection": false,
            "id": "102669",
            "title": "Overview of LHC physics results at ICHEP"
        },
        {
            "startDate": {
                "date": "2010-08-18",
                "tz": "UTC",
                "time": "17:00:00"
            },
            "hasAnyProtection": false,
            "id": "104128",
            "title": "Seminer Oturumu: \"ATLAS status and highlights as of ICHEP\" Dr. Tayfun Ince (Universitaet Bonn)"
        },
        {
            "startDate": {
                "date": "2011-07-23",
                "tz": "UTC",
                "time": "11:00:00"
            },
            "hasAnyProtection": false,
            "id": "145521",
            "title": "89th Plenary ECFA and Joint EPS\/ICHEP-ECFA Session - Grenoble, France"
        },
        {
            "startDate": {
                "date": "2012-01-12",
                "tz": "UTC",
                "time": "08:00:00"
            },
            "hasAnyProtection": false,
            "id": "168897",
            "title": "ICHEP 2012 Outreach Planning Meeting"
        }
    ]
}
Next Previous

© Copyright 2014, Indico Team.

Sphinx theme provided by Read the Docs