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.

 

Schema

All API access is over HTTPS, and accessed from https://api.tucia.com/v2. All data is received as JSON.

All timestamps are returned in ISO 8601 format:

YYYY-MM-DDTHH:MM:SSZ

e.g.: 2017-12-02T16:00:00+04:00

 

The API uses HTTP verbs appropriate to each action.

GET

Used for retrieving resources.

POST

Used for creating resources, or performing custom actions.

PUT

Used for updating resources.

DELETE

Used for deleting resources.

 

If an error occurs, whether on the server or client side, the error message(s) will be returned in an errors array. For example:


   {
      "errors": ["Invalid order ID"]
   }
   

 

Next: Pagination