2

I'd like to access the Revision ID for my appmaker app so I can display it inside the app somewhere. This is the ID in Settings > Revisions.

How can I programatically access Revision ID?

emmby
  • 99,783
  • 65
  • 191
  • 249

2 Answers2

0

At this time App Maker doesn't provide API to get app's revision in runtime, but I believe there should be a feature request for it. Meanwhile the only way to get deployment's revision is through Deployment Settings:

Deployment Settings

Pavel Shkleinik
  • 6,298
  • 2
  • 24
  • 36
0

An app's revision ID can be accessed server side like this:

function getRevisionId() {
  return app.a.a.a[36].c.revision;
}
bellwether
  • 27
  • 6