##Export API Endpoint.

Main endpoint for export creation and managment. Provides endpoints
for creating, listing and deleting export jobs.

Updates to existing jobs are not supported as exports can be cloned.

Request data should be posted as `application/json`.

<code>
curl -v -H "Content-Type: application/json" -H "Authorization: Token [your token]"
--data @request.json http://EXPORT_TOOL_URL/api/jobs
</code>

To monitor the resulting export run retreive the `uid` value from the returned json
and call http://export.hotosm.org/api/runs?job_uid=[the returned uid]

GET /api/jobs
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 0,
    "next": null,
    "previous": null,
    "results": []
}