API Basics
Our API is exposed as an HTTP/1 and HTTP/2 service over SSL. All endpoints live under the URL https://api.youappz.com and then generally follow the REST architecture.Server Specs
HTTP and TLS The API supports HTTP versions 1, 1.1, and 2, although HTTP/2 is preferred. TLS versions 1.2 and 1.3 are supported, with resumption. For more information on TLS support, refer to the SSL Labs report.Content Type
All requests must be encoded as JSON with the Content-Type: application/json header. If not otherwise specified, responses from the Appz API, including errors, are encoded exclusively as JSON as well.Authentication
Appz Access Tokens are required to authenticate and use the Appz API.index.js
The Authorization header with an access token.
Creating an Access Token
Access Tokens can be created and managed from inside your account settings.- In the upper-right corner of your dashboard, click your profile picture, then select Settings
- Select Tokens from the sidebar
- Enter a descriptive name for the token
- Choose the scope from the list of Teams in the drop-down menu. The scope ensures that only your specified Team(s) can use an Access Token
- From the drop-down, select an expiration date for the Token
- Click Create Token
- Once you’ve created an Access Token, securely store the value as it will not be shown again.
Expiration
Setting an expiration date on an Access Token is highly recommended and is considered one of the standard security practices that helps keep your information secure. You can select from a default list of expiration dates ranging from 1 day to 1 year. You can view the expiration date of your Access Tokens on the tokens page.Accessing Resources Owned by a Team
By default, you can access resources contained within your own user account (personal). To access resources owned by a team, or create a project for a specific team, you must first find the Team ID. After you obtained the Team ID, append it as a query string at the end of the API endpoint URL:index.js
Replace [teamID] with the Team ID you obtained.
You still need to provide an API token through the Authorization header.
Failed Authentication
If authentication is unsuccessful for a request, the error status code 403 is returned.Pagination
When the API response includes an array of records, a pagination object is returned when the total number of records present is greater than the limit per request. The default value of this limit is 20 but it can be changed by passing a value to the query parameter limit when the request is made. The maximum possible value of limit is 100. You can then use the pagination object to make additional requests and obtain all the records. The pagination object is structured as shown in the example below:pagination-structure
Pagination object returned with response.In order to obtain the records for the next batch, perform the following actions:
- Send a request to the same API endpoint
- Include the query parameter until with a value equal to the timestamp value of next returned in the previous request
- Repeat this sequence until the pagination object has a next value of null
pagination-example.js
Save all the Projects in your Appz personal account to projects.json
Errors
All API endpoints contain a code and message within the error responses, though some API endpoints extend the error object to contain other information. Each endpoint that does this will be documented in their appropriate section. While we recommend that you write error messages that fit your needs and provide your users with the best experience, our message fields are designed to be neutral, not contain sensitive information, and can be safely passed down to user interfaces.error-response
An example of an unauthorized request error.