Get a specific user

GET /users/{user-slug}

Show information about a specific user

Path parameters

Responses

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"
}