Time

GET statement

The time API returns all the data required for the WFM part of the solution (i.e. People, Projects and Actuals)

The major issue is resolving the 2 factor Authentication and maintaining the Refresh and Access tokens

https://www.workflowmax.com/api/v3/time-methods

ParameterRequired?Description
from=YYYYMMDDRequiredReturn time sheet entries created on or after this date.
to=YYYYMMDDRequiredReturn time sheet entries created on or before this date.

Example URL

https://api.xero.com/workflowmax/3.0/time.api/list?from=20090801&to=20090901

Example Return

[Time] => Array
        (
            [0] => SimpleXMLElement Object
                (
                    [UUID] => 86b37be0-33c9-4452-bf72-4b726449e311
                    [Job] => SimpleXMLElement Object
                        (
                            [ID] => J001706
                            [Name] => 2021/22 PR Retainer
                        )

                    [Task] => SimpleXMLElement Object
                        (
                            [UUID] => 769e18f1-5ce0-4dd2-941f-b5b6b123cf42
                            [Name] => Editorial & Media Relations
                        )

                    [Staff] => SimpleXMLElement Object
                        (
                            [UUID] => f2121e0e-5cac-4a72-9268-cbd7e0220496
                            [Name] => Hannah Wilson
                        )

                    [Date] => 2022-10-27T00:00:00
                    [Minutes] => 15
                    [Note] => SimpleXMLElement Object
                        (
                        )

                    [Billable] => true
                )

Leave a Comment