List the test devices for an app

GET /apps/{app-slug}/test-devices

List registered test devices of all members of a specified Bitrise app

Path parameters

  • app-slug string Required

    App slug

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • device_id string
      • device_type string
      • owner string
  • 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 /apps/{app-slug}/test-devices
curl \
 --request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/test-devices' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "device_id": "string",
      "device_type": "string",
      "owner": "string"
    }
  ]
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}