Rest API
This is the documentation for the Updraft REST API.
About
This API allows the developer to access and interact with Updraft data remotely.
Getting started
Getting started with the REST API of Updraft is easy, and can be done via the command line interface.
The user authentication token is required for all requests below.
Get Authorization token
POST
https://getupdraft.com/api/user/login
This endpoint allows you to get an authorzsation token.
Path Parameters
Username*
string
Organization email
Password*
string
Organization password
Get list of Apps
GET
https://mydomain.getupdraft.com/api/applications/?title=&org=13
This endpoint allows you to get a list of apps within your organization.
Path Parameters
Org
string
Organisation id
Headers
Authorization
string
Authentication token, note: might require adding "Token" to the value field
Get list of Users
GET
https://mydomain.getupdraft.com/api/profiles/
This endpoint allows you to get a list of users within your organization.
Headers
Authorization
string
Authentication token, note: might require adding "Token" to the value field
Delete an app version (build)
DELETE
https://mydomain.getupdraft.com/api/versions/{id}
User can delete an already uploaded build from an application.
Path Parameters
id
integer
A unique integer value identifying your app version
Authorization
string
Authentication token, note: might require adding "Token" to the value field
Create new App project
POST
https://mydomain.getupdraft.com/api/applications/
Headers
Authorization
string
Authentication token, note: might require adding "Token" to the value field
Body data
Get last version of the app
POST
https://mydomain.getupdraft.com/api/get_last_version/
Headers
Authorization
string
Authentication token, note: might require adding "Token" to the value field
Body data
Last updated