List Apple API credentials for a specific user

GET /users/{user-slug}/apple-api-credentials

List Apple API credentials for a specific Bitrise user

Path parameters

  • user-slug string Required

    User slug

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • created_at string
      • is_enterprise_account boolean
      • issuer_id string
      • key_id string
      • name string
      • slug string
      • updated_at 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 /users/{user-slug}/apple-api-credentials
curl \
 --request GET 'https://api.bitrise.io/v0.1/users/{user-slug}/apple-api-credentials' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "created_at": "string",
      "is_enterprise_account": true,
      "issuer_id": "string",
      "key_id": "string",
      "name": "string",
      "slug": "string",
      "updated_at": "string"
    }
  ]
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}