Skip to main content
Create Build
curl --request POST \
  --url https://api.noqa.ai/v1/builds/ \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "app_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "key": "<string>",
  "name": "Production Build v1.0"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "version": "<string>",
  "key": "<string>",
  "file_size": 123,
  "bundle_id": "<string>",
  "name": "Production Build v1.0"
}

Authorizations

x-api-key
string
header
required

API Key for authentication. Get your API key from NOQA dashboard.

Headers

x-api-key
string | null

API Key for authentication

Body

application/json

Build creation model for already uploaded file

app_id
string<uuid>
required

Application ID

Example:

"550e8400-e29b-41d4-a716-446655440000"

key
string
required

Object key of the uploaded file in storage

Example:

"builds/d773ade3-7053-4a91-9dd8-d2e59ba58d0a/550e8400-e29b-41d4-a716-446655440000.ipa"

name
string | null

Optional display name for the build

Required string length: 1 - 200
Example:

"Production Build v1.0"

Response

Successful Response

Build response for Public API

id
string<uuid>
required

Unique identifier of the build

Example:

"550e8400-e29b-41d4-a716-446655440000"

created_at
string<date-time>
required

Timestamp when the build was created

version
string
required

Version string of the build

Example:

"1.0.0 (5)"

key
string
required

Storage key of the build file

Example:

"builds/d773ade3-7053-4a91-9dd8-d2e59ba58d0a/550e8400-e29b-41d4-a716-446655440000.ipa"

file_size
integer
required

Size of the build file in bytes

Example:

10485760

bundle_id
string
required

Bundle identifier of the application

Example:

"com.example.app"

name
string | null

Display name of the build

Example:

"Production Build v1.0"