Get list of the apps for a user

GET /users/{user-slug}/apps

List all the available apps for the given user. It needs the user slug that you can get from the GET /me endpoint.

Path parameters

  • user-slug string Required

    User slug

Query parameters

  • sort_by string

    Order of applications

    Values are last_build_at or created_at.

  • next string

    Slug of the first app in the response

  • limit integer

    Max number of elements per page (default: 50)

    Maximum value is 50.

  • title string

    The title of the app

  • project_type string

    The project type of the app (eg. 'ios', 'android')

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • data array[object]
      Hide data attributes Show data attributes object
      • avatar_url string
      • is_disabled boolean
      • is_github_checks_enabled boolean
      • is_public boolean
      • owner object

        Additional properties are allowed.

        Hide owner attributes Show owner attributes object
        • account_type string
        • name string
        • slug string
      • project_type string
      • provider string
      • repo_owner string
      • repo_slug string
      • repo_url string
      • slug string
      • status integer
      • title string
    • paging object

      pagination

      Additional properties are allowed.

      Hide paging attributes Show paging attributes object
      • next string

        Next is the "anchor" for pagination. This value should be passed to the same endpoint to get the next page. Empty/not included if there's no "next" page. Stop paging when there's no "Next" item in the response!

      • page_item_limit integer

        PageItemLimit - per-page item count. A given page might include less items if there's not enough items. This value is the "max item count per page".

      • total_item_count integer

        TotalItemCount - total item count, through "all pages"

  • 400

    Bad Request

    Hide response attribute Show response attribute object
    • message string
  • 401

    Unauthorized

    Hide response attribute Show response attribute object
    • message string
  • 404

    Not Found

    Hide response attribute Show response attribute object
    • message string
  • 500

    Internal Server Error

    Hide response attribute Show response attribute object
    • message string
GET /users/{user-slug}/apps
curl \
 --request GET 'https://api.bitrise.io/v0.1/users/{user-slug}/apps' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "avatar_url": "string",
      "is_disabled": true,
      "is_github_checks_enabled": true,
      "is_public": true,
      "owner": {
        "account_type": "string",
        "name": "string",
        "slug": "string"
      },
      "project_type": "string",
      "provider": "string",
      "repo_owner": "string",
      "repo_slug": "string",
      "repo_url": "string",
      "slug": "string",
      "status": 42,
      "title": "string"
    }
  ],
  "paging": {
    "next": "string",
    "page_item_limit": 42,
    "total_item_count": 42
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}