Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Endpoint

Once authorised, an endpoint unique to the cluster location of the end user's system will be returned for use in subsequent calls.

...

create two new timerecords

POST /timerecords

{

"timerecords" : [{

"startTimestamp" : "2014-06-23T13:45:00+13",
"actualHours" : "12.6",
....
"links":{"action":"2960","rate:"4"}

}, {

"startTimestamp" : "2014-08-01T11:23:00+13",
"actualHours" :  "2.8",
...

}]

}

...

Uploading files with the Actionstep API is a multiple-step process. First you must upload the document to the "files" resource using the Files resource in 5mb (5242880 bytes) chunks (or in 1 chunk if <= 5mb). This will give you an identifier which you can then use in a regular PUT/POST request for any field which is of type "file".

...