Get Order

Use to return all details about a particular order (task), as well as its linked orders when applicable.

📘

Please Note:

Either id or external_id needs to be provided

🚧

Using External ID

If you are going to get details of an order by External ID, you need to make sure that these values are unique.

$.get('http://yoursite.com/test/' + id, function(data) {
    console.log(data);
});
Language