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
Name | Type | Description |
---|---|---|
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
Name | Type | Description |
---|---|---|
Org | string | Organisation id |
Headers
Name | Type | Description |
---|---|---|
Authentication | 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
Name | Type | Description |
---|---|---|
Authentication | 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
Name | Type | Description |
---|---|---|
id | integer | A unique integer value identifying your app version |
Authentication | string | Authentication token, note: might require adding "Token" to the value field |
Create new App project
POST
https://mydomain.getupdraft.com/api/applications/
Headers
Name | Type | |
---|---|---|
Authentication | 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
Name | Type | |
---|---|---|
Authentication | string | Authentication token, note: might require adding "Token" to the value field |
Body data
Last updated