For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Discord
DocsAPI Reference
DocsAPI Reference
  • Projects
    • GETList projects
    • POSTCreate a project
    • GETGet a project
    • DELDelete a project
    • PATCHUpdate a project
    • POSTTrigger a dynamic pull request run
    • GETList project credentials
    • POSTCreate a project credential
    • GETList project memories
    • POSTCreate a project memory
    • DELDelete a project memory
    • GETList project files
    • GETList project mobile apps
    • POSTUpload a project mobile app
    • DELDelete a project mobile app
    • POSTInitiate a project mobile app upload
    • POSTConfirm a project mobile app upload
  • Tests
    • GETList tests
    • POSTCreate a test
    • GETGet a test
    • DELDelete a test
    • PATCHUpdate a test
    • POSTTrigger a test run
  • Groups
    • GETList test groups
    • POSTCreate a test group
    • GETGet a test group
    • DELDelete a test group
    • PATCHUpdate a test group
    • POSTAdd a test to a group
    • DELRemove a test from a group
    • POSTTrigger a test group run
  • Webhooks
    • POSTTrigger a project webhook
    • POSTTrigger a group webhook
  • Test Runs
    • GETList test runs
    • GETGet test run status
    • POSTCancel a queued or running run
LogoLogo
Discord
Projects

Upload a project mobile app

||View as Markdown|
POST
https://tester.army/api/v1/projects/:projectId/mobile
POST
/api/v1/projects/:projectId/mobile
$curl -X POST https://tester.army/api/v1/projects/projectId/mobile \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: multipart/form-data" \
> -F file=@string
1{
2 "app": {
3 "id": "string",
4 "platform": "ios",
5 "filename": "string",
6 "bundleId": "string",
7 "appVersion": "string",
8 "buildVersion": "string",
9 "fileSize": 1.1,
10 "source": "manual_upload",
11 "expiresAt": "2024-01-15T09:30:00Z",
12 "removeAfter": 1,
13 "createdAt": "2024-01-15T09:30:00Z"
14 }
15}
Upload a mobile app binary to a mobile project. Optionally set removeAfter to delete temporary uploads after a delay.
Was this page helpful?
Previous

List project mobile apps

Next

Delete a project mobile app

Built with

Authentication

AuthorizationBearer
API key authentication using Bearer token format

Path parameters

projectIdstringRequiredformat: "uuid"
Project ID

Request

This endpoint expects a multipart form containing a file.
filefileRequired
removeAfterstringOptional
Optional expiration in seconds for temporary uploads

Response

Mobile app uploaded successfully
appobject

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error
429
Too Many Requests Error
500
Internal Server Error
504
Gateway Timeout Error