Versions Compared

Key

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

...

The meta object is reserved for meta-information that may be returned with the response. Information such are paging is returned in the meta object when applicable. Below is a representation of what the linked object may look like in a response.

"currentUser" : "2",
"currentRole" : "13",
"currentDivision" : "1",
"currentSystem" : "demo123",
"paging" : {

"timerecords" : {

"recordCount" : "13",
"pageCount" : "2",
"page" : "1",
"pageSize" : "10",
"prevPage" : null,
"nextPage" : "https://api.actionstep.com/api/rest/timerecords?page=2" 

}

}

...

POST Response

When successfully creating resource(s) a 201 Created response will be given and the response will return the resource as though it had been requested with the GET method.

...