Get a specific user

GET /users/{user-slug}

Show information about a specific user

Path parameters

  • user-slug string Required

    User slug

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data object

      Additional properties are allowed.

      Hide data attributes Show data attributes object
      • avatar_url string
      • created_at string
      • data_id integer
      • email string
      • has_used_organization_trial boolean
      • payment_processor string
      • slug string
      • unconfirmed_email string
      • username 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}
curl \
 --request GET 'https://api.bitrise.io/v0.1/users/{user-slug}' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": {
    "avatar_url": "string",
    "created_at": "string",
    "data_id": 42,
    "email": "string",
    "has_used_organization_trial": true,
    "payment_processor": "string",
    "slug": "string",
    "unconfirmed_email": "string",
    "username": "string"
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}