v1

latestOpenAPI 3.0.32026-07-17502149.6 KB
Apps

Create app

Creates a new application

post/apps

Request body

Example request

{
  "app": {
    "name": "MyApp-iOS",
    "collaborators": {
      "user@example.com": {
        "permission": "Owner",
        "isCurrentAccount": true
      }
    },
    "deployments": [
      "Production",
      "Staging"
    ]
  }
}

Response

App created

Example response

{
  "app": {
    "name": "MyApp-iOS",
    "collaborators": {
      "user@example.com": {
        "permission": "Owner",
        "isCurrentAccount": true
      }
    },
    "deployments": [
      "Production",
      "Staging"
    ]
  }
}