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.

 

Cancel order

HTTP Request:

DELETE /orders/cancel

A new order can be canceled within 15 min of submission

 

Query Parameters:

Name Type Description

order_id

string
required

example:

UVWXYZ123

cancel_reason

string
optional

example:

selected wrong service

Example successful response:


{
    "errors": [],
    "data": {
      "order_id": "UVWXYZ123",
      "project_name": "John's wedding",
      "status": "canceled",
      "ordered_at": "2017-12-02T16:00:00+04:00",
      "canceled_at": "2017-12-02T16:05:00+04:00"
    }
}

Example error response:


{
    "errors": [
      "15 min deadline passed"
    ]
}

 

Next: Post a message