Skip to main content
GET
/
mobile
/
version
Get versions by customID
curl --location --request GET 'https://autonoma.app/api/mobile/version?customID=build-123' \
--header 'autonoma-client-id: YOUR_CLIENT_ID' \
--header 'autonoma-client-secret: YOUR_CLIENT_SECRET'
[
  {
    "id": "cm7dbowr80042waka7thyjhkr",
    "name": "1.0.0",
    "customID": "build-123",
    "path": "gs://bucket/path/to/app.apk",
    "createdAt": "2024-12-12T18:13:36.000Z",
    "application": {
      "id": "cm7dbowr80042waka7thyjhkq",
      "name": "MyApp",
      "applicationType": "android"
    }
  },
  {
    "id": "cm7dbowr80042waka7thyjhks",
    "name": "1.0.1",
    "customID": "build-123",
    "path": "gs://bucket/path/to/app-v2.apk",
    "createdAt": "2024-12-11T18:13:36.000Z",
    "application": {
      "id": "cm7dbowr80042waka7thyjhkq",
      "name": "MyApp",
      "applicationType": "android"
    }
  }
]

Authorizations

autonoma-client-id
string
header
required

Client ID for authentication

autonoma-client-secret
string
header
required

Client secret for authentication

Query Parameters

customID
string
required

The custom identifier to filter versions by (minimum 1 character)

Minimum string length: 1
Example:

"build-123"

Response

List of application versions matching the customID

id
string
Example:

"cm7dbowr80042waka7thyjhkr"

name
string
Example:

"1.0.0"

customID
string | null

Custom identifier for the version

Example:

"build-123"

path
string
Example:

"gs://bucket/path/to/app.apk"

tag
string
Example:

"main"

createdAt
string<date-time>
Example:

"2024-12-12T18:13:36.000Z"

application
object