LOGO
LOGO
 

API Documentation

Current Version: 2.0

This API allows you to create and manage your orders with Tucia in a simple, programmatic way using conventional HTTP requests. The endpoints are intuitive and powerful, allowing you to easily make calls to retrieve information or to execute actions.

With this API, you are able to add Tucia's human-powered photo editing functionality to any application. This is especially useful for resellers who have their own websites or apps, and outsource the real editing service to Tucia.

 

Fetch order

HTTP Request:

GET /orders/:order_id

Retrieves detailed information and edited photos of a specific order

 

Example successful response:


{
    "errors": [],
    "data": [
       {
       "order_id": "UVWXYZ123",
       "project_name": "John's wedding",
       "customer_id": 1234,
       "price": 3,
       "status": "reviewing",
       "revision": 2,
       "ordered_at": "2017-12-02T16:00:00+04:00",
       "edited_images": [
          {
             "id": "syd3ue2",
             "name": "abc_edited1.jpg",
             "width": 5760,
             "height": 3840,
             "size": "3.23MB",
             "revision": 1,
             "uploaded_at": "2017-12-03T12:30:00+04:00",
             "thumb": "https://............/small/thumb.jpg",
             "origin": "https://............/private/url/for/download"
          },
          {
             "id": "xbsh9sk",
             "name": "abc_edited2.jpg",
             "width": 5760,
             "height": 3840,
             "size": "4.18MB",
             "revision": 2,
             "uploaded_at": "2017-12-04T09:30:00+04:00",
             "thumb": "https://............/small/thumb.jpg",
             "origin": "https://............/private/url/for/download"
          }
       ]
       }
    ]
}

 

Next: Create new order