Application API (v1): Get Newer Board If Exists
This method checks to see if there have been any changes to the Board since the specified Version. If so, the Board representation is returned identical to the Get Board method. In the method call, you need to specify the numeric Board Version. The Board Version is included in the response from the Get Board method. Once you have a Board Version, you can then use the GetNewerIfExists
method to know when board has been updated (e.g. Cards added, updated, or moved).
Note: This method will return the entire board structure. We recommend you only use this method if you need to utilize the complete board on every modification to the board. Otherwise, see Get Board Updates.
Request URL (GET):
https://{accountname}.leankit.com/kanban/api/board/{boardId}/boardversion/{version}/GetNewerIfExists
Sample Request:
https://myaccount.leankit.com/kanban/api/board/10100/boardversion/42/GetNewerIfExists
Sample Response (no newer version):
{ "ReplyData": [ null ], "ReplyCode": 200, "ReplyText": "GetNewerIfExists successfully called." }
Sample Response (newer version exists):
{ "ReplyData": [ /* see output for Get Board */ ], "ReplyCode": 200, "ReplyText": "GetNewerIfExists successfully called." }