Pelle API v10 » Historique » Version 9
Version 8 (Nicolas BERTRAND, 07/09/2016 16:12) → Version 9/45 (Nicolas BERTRAND, 07/09/2016 16:53)
h1. Pelle API v10
h2. API Base URL
<pre>
https://tuco.tdcpb.org/pelle/v1.0
</pre>
h2. Authentication
HTTP requests to the REST API are protected with HTTP Basic authentication
Example:
<pre>
curl -u <username>:<pass> -H "Content-Type: application/json" -X GET https://tuco.tdcpb.org/pelle/v1.0/exhibitors
</pre>
h2. Exhibitors Resources
h3. Exhibitor Properties
|_. NAME |_. DESCRIPTION |
| cncid | Unique exhibitor authorization ID given by CNC |
| id | Unique ID given by tuco (internal usage) |
| name | Theater name |
| address | Exhibitor address |
| city | Exhibitor city |
| contact | Person to contact |
h3. List all exhibitors
<pre>
GET exhibitors
</pre>
Output sample:
<pre>
{
exhibitors:[
{
'cncid': '123456',
'name': 'exhibitor_name': 'UN CINEMA'
'city' : LA VILLE
},
.... }
]
}
</pre>
h3. Retrieve a exhibitor
<pre>
GET exhibitors/<cncid>
</pre>
Output sample:
<pre>
{
exhibitors:
{
'cncid': '123456',
'name': 'UN CINEMA'
'city' : LA VILLE
},
}
</pre>
h2. API Base URL
<pre>
https://tuco.tdcpb.org/pelle/v1.0
</pre>
h2. Authentication
HTTP requests to the REST API are protected with HTTP Basic authentication
Example:
<pre>
curl -u <username>:<pass> -H "Content-Type: application/json" -X GET https://tuco.tdcpb.org/pelle/v1.0/exhibitors
</pre>
h2. Exhibitors Resources
h3. Exhibitor Properties
|_. NAME |_. DESCRIPTION |
| cncid | Unique exhibitor authorization ID given by CNC |
| id | Unique ID given by tuco (internal usage) |
| name | Theater name |
| address | Exhibitor address |
| city | Exhibitor city |
| contact | Person to contact |
h3. List all exhibitors
<pre>
GET exhibitors
</pre>
Output sample:
<pre>
{
exhibitors:[
{
'cncid': '123456',
'name': 'exhibitor_name': 'UN CINEMA'
'city' : LA VILLE
},
.... }
]
}
</pre>
h3. Retrieve a exhibitor
<pre>
GET exhibitors/<cncid>
</pre>
Output sample:
<pre>
{
exhibitors:
{
'cncid': '123456',
'name': 'UN CINEMA'
'city' : LA VILLE
},
}
</pre>