Basics

All data queries are requested using the following endpoint:

https://[subdomain].manageworkonline.com/awt/api/[entity]

Requests can return a single or multiple items. To simply retrieve items you can execute the following function.

The following example is in javascript, using jQuery:

function getData(){
 $.ajax({
      type: "GET",
      url: 'https://[subdomain].manageworkonline.com/awt/api/[entity]',
      crossDomain: true,
      xhrFields: { withCredentials: true },
      success: function(response){
           if(response.Success){
                if(response.Data.length > 0) alert(response.Data[0].Id); 
                else alert("No data found");
           } else {
                alert(response.ErrorMessage);
           }
      },
      dataType: "json"
   });
}

Advanced

It is possible to query data via the following methods to reduce the size and improve the performance

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Please do not use this for support questions.
For customer support, please contact us here.

Post Comment