Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

All the URLs in the following examples must be prefixed by http://<celoxis-server-name>:<port>/psa/
 

  1. Find the list of all projects that are in progress

    api.do?function=query&table=db_project&status_id=1 
  2. Fetch details of task with id 100

    api.do?function=query&table=db_task&id=100 
  3. Fetch tasks assigned to user with id 200

    api.do?function=query&table=db_task&join-with=db_assignment.task_id&db_assignment.user_id=200 
  4. Execute a query using SQL (This example can only be used by On-Premise customers) 

    api.do?function=query&table=generic&sql=select+id+from+db_project+where+fixed_price+>+100000
  • No labels