paymo.tasks.findByName

Find tasks from all the projects matching the given name.

Authentication

This method requires authentication.

Arguments

api_key (Required)
Your application key. See here for more details.
auth_token (Required)
Authentication token received upon login.
name (Required)
Name of the task to find.

Example Response

<?xml version="1.0" encoding="UTF-8"?> <response status="ok"> <tasks> <task id="8090" name="Homepage Design" complete="0" billable="1"> <description></description> <price_per_hour>25.00</price_per_hour> <due_date>2009-10-30</due_date> <project id="2080" name="Presentation Website" /> <tasklist id="1548" name="Design" /> <user id="1920" name="Matthew Brown" /> </task> <task id="8094" name="Homepage Design" complete=1" billable="1"> <description>Flash graphics</description> <price_per_hour>35.00</price_per_hour> <due_date>2009-12-31</due_date> <project id="2081" name="Promotional Website" /> <tasklist id="1549" name="Design" /> <user id="1928" name="Andrew Hills" /> </task> </tasks> </response>

Error Codes

101: Unknown API method
The requested method was not found.
102: Unknown response format
The requested response format was not found.
103: Invalid API Key
The API key passed was not valid.
104: Invalid auth token / Login failed
The login details or auth token passed were invalid.
105: Insufficient permissions
The user making the method call did not have the required permissions.
106: Service currently unavailable
The service is temporarily unavailable.
107: Too many requests for this API key
The application has reached the limit for number of API calls during a specific time period. Wait a bit and try again.
208: Blank name
Name argument was blank.